From bfa623700c7d3eb6db9ab01a87d4ba42837c6a81 Mon Sep 17 00:00:00 2001 From: David Roe Date: Thu, 12 Oct 2023 10:34:52 +0100 Subject: [PATCH] chore: remove php2 parser --- internal/detectors/php/datatype/datatype.go | 3 +- internal/detectors/php/datatype/properties.go | 5 +- internal/detectors/php/php.go | 2 +- internal/languages/php/php.go | 2 +- internal/parser/sitter/php2/README.md | 32 - internal/parser/sitter/php2/binding.go | 16 - internal/parser/sitter/php2/parser.c | 132920 --------------- internal/parser/sitter/php2/scanner.cc | 381 - .../parser/sitter/php2/tree_sitter/parser.h | 223 - 9 files changed, 7 insertions(+), 133577 deletions(-) delete mode 100644 internal/parser/sitter/php2/README.md delete mode 100644 internal/parser/sitter/php2/binding.go delete mode 100644 internal/parser/sitter/php2/parser.c delete mode 100644 internal/parser/sitter/php2/scanner.cc delete mode 100644 internal/parser/sitter/php2/tree_sitter/parser.h diff --git a/internal/detectors/php/datatype/datatype.go b/internal/detectors/php/datatype/datatype.go index 55fef0e01..6c7ffd09d 100644 --- a/internal/detectors/php/datatype/datatype.go +++ b/internal/detectors/php/datatype/datatype.go @@ -1,13 +1,14 @@ package datatype import ( + "github.com/smacker/go-tree-sitter/php" + "github.com/bearer/bearer/internal/parser" "github.com/bearer/bearer/internal/parser/datatype" "github.com/bearer/bearer/internal/report/detections" schemadatatype "github.com/bearer/bearer/internal/report/schema/datatype" "github.com/bearer/bearer/internal/parser/nodeid" - php "github.com/bearer/bearer/internal/parser/sitter/php2" "github.com/bearer/bearer/internal/report" "github.com/bearer/bearer/internal/report/detectors" "github.com/bearer/bearer/internal/report/schema" diff --git a/internal/detectors/php/datatype/properties.go b/internal/detectors/php/datatype/properties.go index e5303c514..45fe6f896 100644 --- a/internal/detectors/php/datatype/properties.go +++ b/internal/detectors/php/datatype/properties.go @@ -1,13 +1,14 @@ package datatype import ( + sitter "github.com/smacker/go-tree-sitter" + "github.com/smacker/go-tree-sitter/php" + "github.com/bearer/bearer/internal/parser" parserdatatype "github.com/bearer/bearer/internal/parser/datatype" "github.com/bearer/bearer/internal/parser/nodeid" - php "github.com/bearer/bearer/internal/parser/sitter/php2" "github.com/bearer/bearer/internal/report/schema" schemadatatype "github.com/bearer/bearer/internal/report/schema/datatype" - sitter "github.com/smacker/go-tree-sitter" ) var propertiesQuery = parser.QueryMustCompile(php.GetLanguage(), diff --git a/internal/detectors/php/php.go b/internal/detectors/php/php.go index dd7ce2c0d..582da1d9e 100644 --- a/internal/detectors/php/php.go +++ b/internal/detectors/php/php.go @@ -10,8 +10,8 @@ import ( "github.com/bearer/bearer/internal/parser/interfacedetector" "github.com/bearer/bearer/internal/parser/nodeid" "github.com/bearer/bearer/internal/parser/schema" - php "github.com/bearer/bearer/internal/parser/sitter/php2" sitter "github.com/smacker/go-tree-sitter" + "github.com/smacker/go-tree-sitter/php" "github.com/bearer/bearer/internal/util/file" "github.com/bearer/bearer/internal/util/stringutil" diff --git a/internal/languages/php/php.go b/internal/languages/php/php.go index 8acfb81bb..2e397280d 100644 --- a/internal/languages/php/php.go +++ b/internal/languages/php/php.go @@ -1,8 +1,8 @@ package php import ( - php "github.com/bearer/bearer/internal/parser/sitter/php2" sitter "github.com/smacker/go-tree-sitter" + "github.com/smacker/go-tree-sitter/php" "github.com/bearer/bearer/internal/classification/schema" "github.com/bearer/bearer/internal/report/detectors" diff --git a/internal/parser/sitter/php2/README.md b/internal/parser/sitter/php2/README.md deleted file mode 100644 index a739fc528..000000000 --- a/internal/parser/sitter/php2/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# PHP Parser - -This is using a different version of the PHP parser to the Go Tree Sitter -version, as we wanted newer features. - -Source: https://github.com/tree-sitter/tree-sitter-php -Version SHA: 57f855461aeeca73bd4218754fb26b5ac143f98f - -## How to develop - -### Installation steps - -```bash -git clone https://github.com/tree-sitter/tree-sitter-php.git -yarn install -``` - -### How to test - -Update the `grammar.js` - -Run the tests - -```bash -yarn test -``` - -You can also use the playground provided by tree-sitter - -```bash -yarn playground -``` diff --git a/internal/parser/sitter/php2/binding.go b/internal/parser/sitter/php2/binding.go deleted file mode 100644 index b9d915ff3..000000000 --- a/internal/parser/sitter/php2/binding.go +++ /dev/null @@ -1,16 +0,0 @@ -package php2 - -//#cgo CXXFLAGS: -std=gnu++11 -//#include -//TSLanguage *tree_sitter_php2(); -import "C" -import ( - "unsafe" - - sitter "github.com/smacker/go-tree-sitter" -) - -func GetLanguage() *sitter.Language { - ptr := unsafe.Pointer(C.tree_sitter_php2()) - return sitter.NewLanguage(ptr) -} diff --git a/internal/parser/sitter/php2/parser.c b/internal/parser/sitter/php2/parser.c deleted file mode 100644 index d9e521290..000000000 --- a/internal/parser/sitter/php2/parser.c +++ /dev/null @@ -1,132920 +0,0 @@ -#include - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif - -#define LANGUAGE_VERSION 13 -#define STATE_COUNT 2526 -#define LARGE_STATE_COUNT 594 -#define SYMBOL_COUNT 370 -#define ALIAS_COUNT 0 -#define TOKEN_COUNT 179 -#define EXTERNAL_TOKEN_COUNT 6 -#define FIELD_COUNT 22 -#define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 145 - -enum { - 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, - 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, - aux_sym_enum_case_token1 = 25, - aux_sym_class_declaration_token1 = 26, - aux_sym_final_modifier_token1 = 27, - aux_sym_abstract_modifier_token1 = 28, - aux_sym_class_interface_clause_token1 = 29, - sym_var_modifier = 30, - aux_sym_use_instead_of_clause_token1 = 31, - aux_sym_visibility_modifier_token1 = 32, - aux_sym_visibility_modifier_token2 = 33, - aux_sym_visibility_modifier_token3 = 34, - aux_sym_arrow_function_token1 = 35, - anon_sym_EQ_GT = 36, - anon_sym_LPAREN = 37, - anon_sym_RPAREN = 38, - anon_sym_DOT_DOT_DOT = 39, - anon_sym_QMARK = 40, - anon_sym_PIPE = 41, - anon_sym_array = 42, - aux_sym_primitive_type_token1 = 43, - anon_sym_iterable = 44, - anon_sym_bool = 45, - anon_sym_float = 46, - anon_sym_int = 47, - anon_sym_string = 48, - anon_sym_void = 49, - anon_sym_mixed = 50, - anon_sym_static = 51, - anon_sym_false = 52, - anon_sym_null = 53, - aux_sym_cast_type_token1 = 54, - aux_sym_cast_type_token2 = 55, - aux_sym_cast_type_token3 = 56, - aux_sym_cast_type_token4 = 57, - aux_sym_cast_type_token5 = 58, - aux_sym_cast_type_token6 = 59, - aux_sym_cast_type_token7 = 60, - aux_sym_cast_type_token8 = 61, - aux_sym_cast_type_token9 = 62, - aux_sym_cast_type_token10 = 63, - aux_sym_cast_type_token11 = 64, - aux_sym_cast_type_token12 = 65, - aux_sym_echo_statement_token1 = 66, - anon_sym_unset = 67, - aux_sym_declare_statement_token1 = 68, - aux_sym_declare_statement_token2 = 69, - anon_sym_ticks = 70, - anon_sym_encoding = 71, - anon_sym_strict_types = 72, - sym_float = 73, - aux_sym_try_statement_token1 = 74, - aux_sym_catch_clause_token1 = 75, - aux_sym_finally_clause_token1 = 76, - aux_sym_goto_statement_token1 = 77, - aux_sym_continue_statement_token1 = 78, - aux_sym_break_statement_token1 = 79, - sym_integer = 80, - aux_sym_return_statement_token1 = 81, - aux_sym_throw_expression_token1 = 82, - aux_sym_while_statement_token1 = 83, - aux_sym_while_statement_token2 = 84, - aux_sym_do_statement_token1 = 85, - aux_sym_for_statement_token1 = 86, - aux_sym_for_statement_token2 = 87, - aux_sym_foreach_statement_token1 = 88, - aux_sym_foreach_statement_token2 = 89, - aux_sym_if_statement_token1 = 90, - aux_sym_if_statement_token2 = 91, - aux_sym_else_if_clause_token1 = 92, - aux_sym_else_clause_token1 = 93, - aux_sym_match_expression_token1 = 94, - aux_sym_match_default_expression_token1 = 95, - aux_sym_switch_statement_token1 = 96, - aux_sym_switch_block_token1 = 97, - anon_sym_AT = 98, - anon_sym_PLUS = 99, - anon_sym_DASH = 100, - anon_sym_TILDE = 101, - anon_sym_BANG = 102, - anon_sym_STAR_STAR = 103, - aux_sym_clone_expression_token1 = 104, - anon_sym_COLON_COLON = 105, - aux_sym_print_intrinsic_token1 = 106, - aux_sym_object_creation_expression_token1 = 107, - anon_sym_PLUS_PLUS = 108, - anon_sym_DASH_DASH = 109, - sym_shell_command_expression = 110, - anon_sym_STAR_STAR_EQ = 111, - anon_sym_STAR_EQ = 112, - anon_sym_SLASH_EQ = 113, - anon_sym_PERCENT_EQ = 114, - anon_sym_PLUS_EQ = 115, - anon_sym_DASH_EQ = 116, - anon_sym_DOT_EQ = 117, - anon_sym_LT_LT_EQ = 118, - anon_sym_GT_GT_EQ = 119, - anon_sym_AMP_EQ = 120, - anon_sym_CARET_EQ = 121, - anon_sym_PIPE_EQ = 122, - anon_sym_QMARK_QMARK_EQ = 123, - anon_sym_DASH_GT = 124, - anon_sym_QMARK_DASH_GT = 125, - aux_sym__list_destructing_token1 = 126, - anon_sym_LBRACK = 127, - anon_sym_RBRACK = 128, - anon_sym_self = 129, - anon_sym_parent = 130, - anon_sym_POUND_LBRACK = 131, - sym_escape_sequence = 132, - aux_sym_encapsed_string_token1 = 133, - anon_sym_DQUOTE = 134, - anon_sym_BSLASHu = 135, - anon_sym_SQUOTE = 136, - aux_sym_string_token1 = 137, - aux_sym_string_token2 = 138, - sym_boolean = 139, - sym_null = 140, - anon_sym_DOLLAR = 141, - aux_sym_yield_expression_token1 = 142, - aux_sym_yield_expression_token2 = 143, - aux_sym_binary_expression_token1 = 144, - anon_sym_QMARK_QMARK = 145, - aux_sym_binary_expression_token2 = 146, - aux_sym_binary_expression_token3 = 147, - aux_sym_binary_expression_token4 = 148, - anon_sym_PIPE_PIPE = 149, - anon_sym_AMP_AMP = 150, - anon_sym_CARET = 151, - anon_sym_EQ_EQ = 152, - anon_sym_BANG_EQ = 153, - anon_sym_LT_GT = 154, - anon_sym_EQ_EQ_EQ = 155, - anon_sym_BANG_EQ_EQ = 156, - anon_sym_LT = 157, - anon_sym_GT = 158, - anon_sym_LT_EQ = 159, - anon_sym_GT_EQ = 160, - anon_sym_LT_EQ_GT = 161, - anon_sym_LT_LT = 162, - anon_sym_GT_GT = 163, - anon_sym_DOT = 164, - anon_sym_STAR = 165, - anon_sym_SLASH = 166, - anon_sym_PERCENT = 167, - aux_sym_include_expression_token1 = 168, - aux_sym_include_once_expression_token1 = 169, - aux_sym_require_expression_token1 = 170, - aux_sym_require_once_expression_token1 = 171, - sym_comment = 172, - sym__automatic_semicolon = 173, - sym_heredoc = 174, - sym_encapsed_string_chars = 175, - sym_encapsed_string_chars_after_variable = 176, - sym__eof = 177, - sym_sentinel_error = 178, - sym_program = 179, - sym_text_interpolation = 180, - sym_text = 181, - sym_empty_statement = 182, - sym_reference_modifier = 183, - sym_function_static_declaration = 184, - sym_static_variable_declaration = 185, - sym_global_declaration = 186, - sym_namespace_definition = 187, - sym_namespace_use_declaration = 188, - sym_namespace_use_clause = 189, - sym_qualified_name = 190, - sym_namespace_name_as_prefix = 191, - sym_namespace_name = 192, - sym_namespace_aliasing_clause = 193, - sym_namespace_use_group = 194, - sym_namespace_use_group_clause = 195, - sym_trait_declaration = 196, - sym_interface_declaration = 197, - sym_base_clause = 198, - sym_enum_declaration = 199, - sym_enum_declaration_list = 200, - sym__enum_member_declaration = 201, - sym_enum_case = 202, - sym_class_declaration = 203, - sym_declaration_list = 204, - sym_final_modifier = 205, - sym_abstract_modifier = 206, - sym_class_interface_clause = 207, - sym__member_declaration = 208, - sym_const_declaration = 209, - sym__class_const_declaration = 210, - sym__const_declaration = 211, - sym_property_declaration = 212, - sym__modifier = 213, - sym_property_element = 214, - sym_property_initializer = 215, - sym_method_declaration = 216, - sym_static_modifier = 217, - sym_use_declaration = 218, - sym_use_list = 219, - sym_use_instead_of_clause = 220, - sym_use_as_clause = 221, - sym_visibility_modifier = 222, - sym_function_definition = 223, - sym__function_definition_header = 224, - sym_arrow_function = 225, - sym_formal_parameters = 226, - sym_property_promotion_parameter = 227, - sym_simple_parameter = 228, - sym_variadic_parameter = 229, - sym__type = 230, - sym__types = 231, - sym_named_type = 232, - sym_optional_type = 233, - sym_union_type = 234, - sym_primitive_type = 235, - sym_cast_type = 236, - sym__return_type = 237, - sym_const_element = 238, - sym_echo_statement = 239, - sym_unset_statement = 240, - sym_declare_statement = 241, - sym_declare_directive = 242, - sym_try_statement = 243, - sym_catch_clause = 244, - sym_type_list = 245, - sym_finally_clause = 246, - sym_goto_statement = 247, - sym_continue_statement = 248, - sym_break_statement = 249, - sym_return_statement = 250, - sym_throw_expression = 251, - sym_while_statement = 252, - sym_do_statement = 253, - sym_for_statement = 254, - sym__expressions = 255, - sym_sequence_expression = 256, - sym_foreach_statement = 257, - sym_foreach_pair = 258, - sym_if_statement = 259, - sym_colon_block = 260, - sym_else_if_clause = 261, - sym_else_clause = 262, - sym_else_if_clause_2 = 263, - sym_else_clause_2 = 264, - sym_match_expression = 265, - sym_match_block = 266, - sym_match_condition_list = 267, - sym_match_conditional_expression = 268, - sym_match_default_expression = 269, - sym_switch_statement = 270, - sym_switch_block = 271, - sym_case_statement = 272, - sym_default_statement = 273, - sym_compound_statement = 274, - sym_named_label_statement = 275, - sym_expression_statement = 276, - sym__expression = 277, - sym__unary_expression = 278, - sym_unary_op_expression = 279, - sym_exponentiation_expression = 280, - sym_clone_expression = 281, - sym__primary_expression = 282, - sym_parenthesized_expression = 283, - sym_class_constant_access_expression = 284, - sym_print_intrinsic = 285, - sym_anonymous_function_creation_expression = 286, - sym_anonymous_function_use_clause = 287, - sym_object_creation_expression = 288, - sym_update_expression = 289, - sym_cast_expression = 290, - sym_cast_variable = 291, - sym_assignment_expression = 292, - sym_reference_assignment_expression = 293, - sym_conditional_expression = 294, - sym_augmented_assignment_expression = 295, - sym_member_access_expression = 296, - sym_nullsafe_member_access_expression = 297, - sym_scoped_property_access_expression = 298, - sym_list_literal = 299, - sym__list_destructing = 300, - sym__array_destructing = 301, - sym__array_destructing_element = 302, - sym_function_call_expression = 303, - sym_scoped_call_expression = 304, - sym__scope_resolution_qualifier = 305, - sym_relative_scope = 306, - sym_arguments = 307, - sym_argument = 308, - sym_member_call_expression = 309, - sym_nullsafe_member_call_expression = 310, - sym_variadic_unpacking = 311, - sym_subscript_expression = 312, - sym__dereferencable_expression = 313, - sym_array_creation_expression = 314, - sym_attribute_list = 315, - sym_attribute = 316, - sym__complex_string_part = 317, - sym__simple_string_member_access_expression = 318, - sym__simple_string_subscript_unary_expression = 319, - sym__simple_string_array_access_argument = 320, - sym__simple_string_subscript_expression = 321, - sym__simple_string_part = 322, - sym_encapsed_string = 323, - sym_string = 324, - sym__string = 325, - sym_dynamic_variable_name = 326, - sym_variable_name = 327, - sym_variable_reference = 328, - sym_by_ref = 329, - sym_yield_expression = 330, - sym_array_element_initializer = 331, - sym_binary_expression = 332, - sym_include_expression = 333, - sym_include_once_expression = 334, - sym_require_expression = 335, - sym_require_once_expression = 336, - sym__reserved_identifier = 337, - aux_sym_program_repeat1 = 338, - aux_sym_text_repeat1 = 339, - aux_sym_function_static_declaration_repeat1 = 340, - aux_sym_global_declaration_repeat1 = 341, - aux_sym_namespace_use_declaration_repeat1 = 342, - aux_sym_namespace_name_repeat1 = 343, - aux_sym_namespace_use_group_repeat1 = 344, - aux_sym_base_clause_repeat1 = 345, - aux_sym_enum_declaration_list_repeat1 = 346, - aux_sym_declaration_list_repeat1 = 347, - aux_sym__const_declaration_repeat1 = 348, - aux_sym_property_declaration_repeat1 = 349, - aux_sym_property_declaration_repeat2 = 350, - aux_sym_use_list_repeat1 = 351, - aux_sym_formal_parameters_repeat1 = 352, - aux_sym_union_type_repeat1 = 353, - aux_sym_unset_statement_repeat1 = 354, - aux_sym_try_statement_repeat1 = 355, - aux_sym_type_list_repeat1 = 356, - aux_sym_if_statement_repeat1 = 357, - aux_sym_if_statement_repeat2 = 358, - aux_sym_match_block_repeat1 = 359, - aux_sym_match_condition_list_repeat1 = 360, - aux_sym_switch_block_repeat1 = 361, - aux_sym_anonymous_function_use_clause_repeat1 = 362, - aux_sym__list_destructing_repeat1 = 363, - aux_sym__array_destructing_repeat1 = 364, - aux_sym_arguments_repeat1 = 365, - aux_sym_array_creation_expression_repeat1 = 366, - aux_sym_attribute_list_repeat1 = 367, - aux_sym_attribute_list_repeat2 = 368, - aux_sym_encapsed_string_repeat1 = 369, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [sym_name] = "name", - [sym_php_tag] = "php_tag", - [anon_sym_QMARK_GT] = "\?>", - [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] = "=", - [aux_sym_global_declaration_token1] = "global", - [aux_sym_namespace_definition_token1] = "namespace", - [aux_sym_namespace_use_declaration_token1] = "use", - [aux_sym_namespace_use_declaration_token2] = "function", - [aux_sym_namespace_use_declaration_token3] = "const", - [anon_sym_BSLASH] = "\\", - [aux_sym_namespace_aliasing_clause_token1] = "as", - [anon_sym_LBRACE] = "{", - [anon_sym_RBRACE] = "}", - [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] = ":", - [aux_sym_enum_case_token1] = "case", - [aux_sym_class_declaration_token1] = "class", - [aux_sym_final_modifier_token1] = "final", - [aux_sym_abstract_modifier_token1] = "abstract", - [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", - [aux_sym_arrow_function_token1] = "fn", - [anon_sym_EQ_GT] = "=>", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [anon_sym_DOT_DOT_DOT] = "...", - [anon_sym_QMARK] = "\?", - [anon_sym_PIPE] = "|", - [anon_sym_array] = "array", - [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_mixed] = "mixed", - [anon_sym_static] = "static", - [anon_sym_false] = "false", - [anon_sym_null] = "null", - [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_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", - [sym_float] = "float", - [aux_sym_try_statement_token1] = "try", - [aux_sym_catch_clause_token1] = "catch", - [aux_sym_finally_clause_token1] = "finally", - [aux_sym_goto_statement_token1] = "goto", - [aux_sym_continue_statement_token1] = "continue", - [aux_sym_break_statement_token1] = "break", - [sym_integer] = "integer", - [aux_sym_return_statement_token1] = "return", - [aux_sym_throw_expression_token1] = "throw", - [aux_sym_while_statement_token1] = "while", - [aux_sym_while_statement_token2] = "endwhile", - [aux_sym_do_statement_token1] = "do", - [aux_sym_for_statement_token1] = "for", - [aux_sym_for_statement_token2] = "endfor", - [aux_sym_foreach_statement_token1] = "foreach", - [aux_sym_foreach_statement_token2] = "endforeach", - [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", - [anon_sym_AT] = "@", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", - [anon_sym_TILDE] = "~", - [anon_sym_BANG] = "!", - [anon_sym_STAR_STAR] = "**", - [aux_sym_clone_expression_token1] = "clone", - [anon_sym_COLON_COLON] = "::", - [aux_sym_print_intrinsic_token1] = "print", - [aux_sym_object_creation_expression_token1] = "new", - [anon_sym_PLUS_PLUS] = "++", - [anon_sym_DASH_DASH] = "--", - [sym_shell_command_expression] = "shell_command_expression", - [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] = "\?->", - [aux_sym__list_destructing_token1] = "list", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [anon_sym_self] = "self", - [anon_sym_parent] = "parent", - [anon_sym_POUND_LBRACK] = "#[", - [sym_escape_sequence] = "escape_sequence", - [aux_sym_encapsed_string_token1] = "encapsed_string_token1", - [anon_sym_DQUOTE] = "\"", - [anon_sym_BSLASHu] = "string", - [anon_sym_SQUOTE] = "'", - [aux_sym_string_token1] = "string_token1", - [aux_sym_string_token2] = "string_token2", - [sym_boolean] = "boolean", - [sym_null] = "null", - [anon_sym_DOLLAR] = "$", - [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_token2] = "and", - [aux_sym_binary_expression_token3] = "or", - [aux_sym_binary_expression_token4] = "xor", - [anon_sym_PIPE_PIPE] = "||", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_CARET] = "^", - [anon_sym_EQ_EQ] = "==", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_LT_GT] = "<>", - [anon_sym_EQ_EQ_EQ] = "===", - [anon_sym_BANG_EQ_EQ] = "!==", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", - [anon_sym_LT_EQ] = "<=", - [anon_sym_GT_EQ] = ">=", - [anon_sym_LT_EQ_GT] = "<=>", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", - [anon_sym_DOT] = ".", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_PERCENT] = "%", - [aux_sym_include_expression_token1] = "include", - [aux_sym_include_once_expression_token1] = "include_once", - [aux_sym_require_expression_token1] = "require", - [aux_sym_require_once_expression_token1] = "require_once", - [sym_comment] = "comment", - [sym__automatic_semicolon] = "_automatic_semicolon", - [sym_heredoc] = "heredoc", - [sym_encapsed_string_chars] = "string", - [sym_encapsed_string_chars_after_variable] = "string", - [sym__eof] = "_eof", - [sym_sentinel_error] = "sentinel_error", - [sym_program] = "program", - [sym_text_interpolation] = "text_interpolation", - [sym_text] = "text", - [sym_empty_statement] = "empty_statement", - [sym_reference_modifier] = "reference_modifier", - [sym_function_static_declaration] = "function_static_declaration", - [sym_static_variable_declaration] = "static_variable_declaration", - [sym_global_declaration] = "global_declaration", - [sym_namespace_definition] = "namespace_definition", - [sym_namespace_use_declaration] = "namespace_use_declaration", - [sym_namespace_use_clause] = "namespace_use_clause", - [sym_qualified_name] = "qualified_name", - [sym_namespace_name_as_prefix] = "namespace_name_as_prefix", - [sym_namespace_name] = "namespace_name", - [sym_namespace_aliasing_clause] = "namespace_aliasing_clause", - [sym_namespace_use_group] = "namespace_use_group", - [sym_namespace_use_group_clause] = "namespace_use_group_clause", - [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_final_modifier] = "final_modifier", - [sym_abstract_modifier] = "abstract_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", - [sym_property_initializer] = "property_initializer", - [sym_method_declaration] = "method_declaration", - [sym_static_modifier] = "static_modifier", - [sym_use_declaration] = "use_declaration", - [sym_use_list] = "use_list", - [sym_use_instead_of_clause] = "use_instead_of_clause", - [sym_use_as_clause] = "use_as_clause", - [sym_visibility_modifier] = "visibility_modifier", - [sym_function_definition] = "function_definition", - [sym__function_definition_header] = "_function_definition_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__types] = "_types", - [sym_named_type] = "named_type", - [sym_optional_type] = "optional_type", - [sym_union_type] = "type_list", - [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_unset_statement] = "unset_statement", - [sym_declare_statement] = "declare_statement", - [sym_declare_directive] = "declare_directive", - [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_expression] = "throw_expression", - [sym_while_statement] = "while_statement", - [sym_do_statement] = "do_statement", - [sym_for_statement] = "for_statement", - [sym__expressions] = "_expressions", - [sym_sequence_expression] = "sequence_expression", - [sym_foreach_statement] = "foreach_statement", - [sym_foreach_pair] = "pair", - [sym_if_statement] = "if_statement", - [sym_colon_block] = "colon_block", - [sym_else_if_clause] = "else_if_clause", - [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", - [sym_default_statement] = "default_statement", - [sym_compound_statement] = "compound_statement", - [sym_named_label_statement] = "named_label_statement", - [sym_expression_statement] = "expression_statement", - [sym__expression] = "_expression", - [sym__unary_expression] = "_unary_expression", - [sym_unary_op_expression] = "unary_op_expression", - [sym_exponentiation_expression] = "exponentiation_expression", - [sym_clone_expression] = "clone_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", - [sym_anonymous_function_creation_expression] = "anonymous_function_creation_expression", - [sym_anonymous_function_use_clause] = "anonymous_function_use_clause", - [sym_object_creation_expression] = "object_creation_expression", - [sym_update_expression] = "update_expression", - [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_arguments] = "arguments", - [sym_argument] = "argument", - [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_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", - [sym_encapsed_string] = "encapsed_string", - [sym_string] = "string", - [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", - [sym_include_expression] = "include_expression", - [sym_include_once_expression] = "include_once_expression", - [sym_require_expression] = "require_expression", - [sym_require_once_expression] = "require_once_expression", - [sym__reserved_identifier] = "name", - [aux_sym_program_repeat1] = "program_repeat1", - [aux_sym_text_repeat1] = "text_repeat1", - [aux_sym_function_static_declaration_repeat1] = "function_static_declaration_repeat1", - [aux_sym_global_declaration_repeat1] = "global_declaration_repeat1", - [aux_sym_namespace_use_declaration_repeat1] = "namespace_use_declaration_repeat1", - [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_declaration_list_repeat1] = "declaration_list_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_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_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", - [aux_sym_attribute_list_repeat1] = "attribute_list_repeat1", - [aux_sym_attribute_list_repeat2] = "attribute_list_repeat2", - [aux_sym_encapsed_string_repeat1] = "encapsed_string_repeat1", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [sym_name] = sym_name, - [sym_php_tag] = sym_php_tag, - [anon_sym_QMARK_GT] = anon_sym_QMARK_GT, - [aux_sym_text_token1] = aux_sym_text_token1, - [aux_sym_text_token2] = aux_sym_text_token2, - [anon_sym_SEMI] = anon_sym_SEMI, - [anon_sym_AMP] = anon_sym_AMP, - [aux_sym_function_static_declaration_token1] = anon_sym_static, - [anon_sym_COMMA] = anon_sym_COMMA, - [anon_sym_EQ] = anon_sym_EQ, - [aux_sym_global_declaration_token1] = aux_sym_global_declaration_token1, - [aux_sym_namespace_definition_token1] = aux_sym_namespace_definition_token1, - [aux_sym_namespace_use_declaration_token1] = aux_sym_namespace_use_declaration_token1, - [aux_sym_namespace_use_declaration_token2] = aux_sym_namespace_use_declaration_token2, - [aux_sym_namespace_use_declaration_token3] = aux_sym_namespace_use_declaration_token3, - [anon_sym_BSLASH] = anon_sym_BSLASH, - [aux_sym_namespace_aliasing_clause_token1] = aux_sym_namespace_aliasing_clause_token1, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [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, - [aux_sym_enum_case_token1] = aux_sym_enum_case_token1, - [aux_sym_class_declaration_token1] = aux_sym_class_declaration_token1, - [aux_sym_final_modifier_token1] = aux_sym_final_modifier_token1, - [aux_sym_abstract_modifier_token1] = aux_sym_abstract_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, - [aux_sym_arrow_function_token1] = aux_sym_arrow_function_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, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_array] = anon_sym_array, - [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_mixed] = anon_sym_mixed, - [anon_sym_static] = anon_sym_static, - [anon_sym_false] = anon_sym_false, - [anon_sym_null] = anon_sym_null, - [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_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, - [sym_float] = sym_float, - [aux_sym_try_statement_token1] = aux_sym_try_statement_token1, - [aux_sym_catch_clause_token1] = aux_sym_catch_clause_token1, - [aux_sym_finally_clause_token1] = aux_sym_finally_clause_token1, - [aux_sym_goto_statement_token1] = aux_sym_goto_statement_token1, - [aux_sym_continue_statement_token1] = aux_sym_continue_statement_token1, - [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_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, - [aux_sym_for_statement_token1] = aux_sym_for_statement_token1, - [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, - [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, - [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, - [aux_sym_clone_expression_token1] = aux_sym_clone_expression_token1, - [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, - [aux_sym_print_intrinsic_token1] = aux_sym_print_intrinsic_token1, - [aux_sym_object_creation_expression_token1] = aux_sym_object_creation_expression_token1, - [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, - [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [sym_shell_command_expression] = sym_shell_command_expression, - [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, - [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, - [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, - [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, - [anon_sym_DOT_EQ] = anon_sym_DOT_EQ, - [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, - [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, - [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_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, - [anon_sym_self] = anon_sym_self, - [anon_sym_parent] = anon_sym_parent, - [anon_sym_POUND_LBRACK] = anon_sym_POUND_LBRACK, - [sym_escape_sequence] = sym_escape_sequence, - [aux_sym_encapsed_string_token1] = aux_sym_encapsed_string_token1, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [anon_sym_BSLASHu] = sym_string, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, - [aux_sym_string_token1] = aux_sym_string_token1, - [aux_sym_string_token2] = aux_sym_string_token2, - [sym_boolean] = sym_boolean, - [sym_null] = sym_null, - [anon_sym_DOLLAR] = anon_sym_DOLLAR, - [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, - [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_CARET] = anon_sym_CARET, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_LT_GT] = anon_sym_LT_GT, - [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, - [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_LT_EQ_GT] = anon_sym_LT_EQ_GT, - [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_GT_GT] = anon_sym_GT_GT, - [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [aux_sym_include_expression_token1] = aux_sym_include_expression_token1, - [aux_sym_include_once_expression_token1] = aux_sym_include_once_expression_token1, - [aux_sym_require_expression_token1] = aux_sym_require_expression_token1, - [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, - [sym_encapsed_string_chars_after_variable] = sym_string, - [sym__eof] = sym__eof, - [sym_sentinel_error] = sym_sentinel_error, - [sym_program] = sym_program, - [sym_text_interpolation] = sym_text_interpolation, - [sym_text] = sym_text, - [sym_empty_statement] = sym_empty_statement, - [sym_reference_modifier] = sym_reference_modifier, - [sym_function_static_declaration] = sym_function_static_declaration, - [sym_static_variable_declaration] = sym_static_variable_declaration, - [sym_global_declaration] = sym_global_declaration, - [sym_namespace_definition] = sym_namespace_definition, - [sym_namespace_use_declaration] = sym_namespace_use_declaration, - [sym_namespace_use_clause] = sym_namespace_use_clause, - [sym_qualified_name] = sym_qualified_name, - [sym_namespace_name_as_prefix] = sym_namespace_name_as_prefix, - [sym_namespace_name] = sym_namespace_name, - [sym_namespace_aliasing_clause] = sym_namespace_aliasing_clause, - [sym_namespace_use_group] = sym_namespace_use_group, - [sym_namespace_use_group_clause] = sym_namespace_use_group_clause, - [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_final_modifier] = sym_final_modifier, - [sym_abstract_modifier] = sym_abstract_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, - [sym_property_initializer] = sym_property_initializer, - [sym_method_declaration] = sym_method_declaration, - [sym_static_modifier] = sym_static_modifier, - [sym_use_declaration] = sym_use_declaration, - [sym_use_list] = sym_use_list, - [sym_use_instead_of_clause] = sym_use_instead_of_clause, - [sym_use_as_clause] = sym_use_as_clause, - [sym_visibility_modifier] = sym_visibility_modifier, - [sym_function_definition] = sym_function_definition, - [sym__function_definition_header] = sym__function_definition_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__types] = sym__types, - [sym_named_type] = sym_named_type, - [sym_optional_type] = sym_optional_type, - [sym_union_type] = sym_type_list, - [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_unset_statement] = sym_unset_statement, - [sym_declare_statement] = sym_declare_statement, - [sym_declare_directive] = sym_declare_directive, - [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_expression] = sym_throw_expression, - [sym_while_statement] = sym_while_statement, - [sym_do_statement] = sym_do_statement, - [sym_for_statement] = sym_for_statement, - [sym__expressions] = sym__expressions, - [sym_sequence_expression] = sym_sequence_expression, - [sym_foreach_statement] = sym_foreach_statement, - [sym_foreach_pair] = sym_foreach_pair, - [sym_if_statement] = sym_if_statement, - [sym_colon_block] = sym_colon_block, - [sym_else_if_clause] = sym_else_if_clause, - [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, - [sym_default_statement] = sym_default_statement, - [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__unary_expression] = sym__unary_expression, - [sym_unary_op_expression] = sym_unary_op_expression, - [sym_exponentiation_expression] = sym_exponentiation_expression, - [sym_clone_expression] = sym_clone_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, - [sym_anonymous_function_creation_expression] = sym_anonymous_function_creation_expression, - [sym_anonymous_function_use_clause] = sym_anonymous_function_use_clause, - [sym_object_creation_expression] = sym_object_creation_expression, - [sym_update_expression] = sym_update_expression, - [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_arguments] = sym_arguments, - [sym_argument] = sym_argument, - [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_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, - [sym_encapsed_string] = sym_encapsed_string, - [sym_string] = sym_string, - [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, - [sym_include_expression] = sym_include_expression, - [sym_include_once_expression] = sym_include_once_expression, - [sym_require_expression] = sym_require_expression, - [sym_require_once_expression] = sym_require_once_expression, - [sym__reserved_identifier] = sym_name, - [aux_sym_program_repeat1] = aux_sym_program_repeat1, - [aux_sym_text_repeat1] = aux_sym_text_repeat1, - [aux_sym_function_static_declaration_repeat1] = aux_sym_function_static_declaration_repeat1, - [aux_sym_global_declaration_repeat1] = aux_sym_global_declaration_repeat1, - [aux_sym_namespace_use_declaration_repeat1] = aux_sym_namespace_use_declaration_repeat1, - [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_declaration_list_repeat1] = aux_sym_declaration_list_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_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_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, - [aux_sym_attribute_list_repeat1] = aux_sym_attribute_list_repeat1, - [aux_sym_attribute_list_repeat2] = aux_sym_attribute_list_repeat2, - [aux_sym_encapsed_string_repeat1] = aux_sym_encapsed_string_repeat1, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [sym_name] = { - .visible = true, - .named = true, - }, - [sym_php_tag] = { - .visible = true, - .named = true, - }, - [anon_sym_QMARK_GT] = { - .visible = true, - .named = false, - }, - [aux_sym_text_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_text_token2] = { - .visible = false, - .named = false, - }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, - [aux_sym_function_static_declaration_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [aux_sym_global_declaration_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_namespace_definition_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_namespace_use_declaration_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_namespace_use_declaration_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_namespace_use_declaration_token3] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASH] = { - .visible = true, - .named = false, - }, - [aux_sym_namespace_aliasing_clause_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [aux_sym_trait_declaration_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_interface_declaration_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_base_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_enum_declaration_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [aux_sym_enum_case_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_class_declaration_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_final_modifier_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_abstract_modifier_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_class_interface_clause_token1] = { - .visible = true, - .named = false, - }, - [sym_var_modifier] = { - .visible = true, - .named = true, - }, - [aux_sym_use_instead_of_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_visibility_modifier_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_visibility_modifier_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_visibility_modifier_token3] = { - .visible = true, - .named = false, - }, - [aux_sym_arrow_function_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_array] = { - .visible = true, - .named = false, - }, - [aux_sym_primitive_type_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_iterable] = { - .visible = true, - .named = false, - }, - [anon_sym_bool] = { - .visible = true, - .named = false, - }, - [anon_sym_float] = { - .visible = true, - .named = false, - }, - [anon_sym_int] = { - .visible = true, - .named = false, - }, - [anon_sym_string] = { - .visible = true, - .named = false, - }, - [anon_sym_void] = { - .visible = true, - .named = false, - }, - [anon_sym_mixed] = { - .visible = true, - .named = false, - }, - [anon_sym_static] = { - .visible = true, - .named = false, - }, - [anon_sym_false] = { - .visible = true, - .named = false, - }, - [anon_sym_null] = { - .visible = true, - .named = false, - }, - [aux_sym_cast_type_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_cast_type_token5] = { - .visible = false, - .named = false, - }, - [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_unset] = { - .visible = true, - .named = false, - }, - [aux_sym_declare_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_declare_statement_token2] = { - .visible = true, - .named = false, - }, - [anon_sym_ticks] = { - .visible = true, - .named = false, - }, - [anon_sym_encoding] = { - .visible = true, - .named = false, - }, - [anon_sym_strict_types] = { - .visible = true, - .named = false, - }, - [sym_float] = { - .visible = true, - .named = true, - }, - [aux_sym_try_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_catch_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_finally_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_goto_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_continue_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_break_statement_token1] = { - .visible = true, - .named = false, - }, - [sym_integer] = { - .visible = true, - .named = true, - }, - [aux_sym_return_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_throw_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_while_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_while_statement_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_do_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_for_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_for_statement_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_foreach_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_foreach_statement_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_if_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_if_statement_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_else_if_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_else_clause_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_match_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_match_default_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_switch_statement_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_switch_block_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_STAR] = { - .visible = true, - .named = false, - }, - [aux_sym_clone_expression_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_COLON] = { - .visible = true, - .named = false, - }, - [aux_sym_print_intrinsic_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_object_creation_expression_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DASH] = { - .visible = true, - .named = false, - }, - [sym_shell_command_expression] = { - .visible = true, - .named = true, - }, - [anon_sym_STAR_STAR_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK_QMARK_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_GT] = { - .visible = true, - .named = false, - }, - [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, - }, - [anon_sym_self] = { - .visible = true, - .named = false, - }, - [anon_sym_parent] = { - .visible = true, - .named = false, - }, - [anon_sym_POUND_LBRACK] = { - .visible = true, - .named = false, - }, - [sym_escape_sequence] = { - .visible = true, - .named = true, - }, - [aux_sym_encapsed_string_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHu] = { - .visible = true, - .named = true, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, - [aux_sym_string_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_string_token2] = { - .visible = false, - .named = false, - }, - [sym_boolean] = { - .visible = true, - .named = true, - }, - [sym_null] = { - .visible = true, - .named = true, - }, - [anon_sym_DOLLAR] = { - .visible = true, - .named = false, - }, - [aux_sym_yield_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_yield_expression_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_binary_expression_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK_QMARK] = { - .visible = true, - .named = false, - }, - [aux_sym_binary_expression_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_binary_expression_token3] = { - .visible = true, - .named = false, - }, - [aux_sym_binary_expression_token4] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [aux_sym_include_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_include_once_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_require_expression_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_require_once_expression_token1] = { - .visible = true, - .named = false, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [sym__automatic_semicolon] = { - .visible = false, - .named = true, - }, - [sym_heredoc] = { - .visible = true, - .named = true, - }, - [sym_encapsed_string_chars] = { - .visible = true, - .named = true, - }, - [sym_encapsed_string_chars_after_variable] = { - .visible = true, - .named = true, - }, - [sym__eof] = { - .visible = false, - .named = true, - }, - [sym_sentinel_error] = { - .visible = true, - .named = true, - }, - [sym_program] = { - .visible = true, - .named = true, - }, - [sym_text_interpolation] = { - .visible = true, - .named = true, - }, - [sym_text] = { - .visible = true, - .named = true, - }, - [sym_empty_statement] = { - .visible = true, - .named = true, - }, - [sym_reference_modifier] = { - .visible = true, - .named = true, - }, - [sym_function_static_declaration] = { - .visible = true, - .named = true, - }, - [sym_static_variable_declaration] = { - .visible = true, - .named = true, - }, - [sym_global_declaration] = { - .visible = true, - .named = true, - }, - [sym_namespace_definition] = { - .visible = true, - .named = true, - }, - [sym_namespace_use_declaration] = { - .visible = true, - .named = true, - }, - [sym_namespace_use_clause] = { - .visible = true, - .named = true, - }, - [sym_qualified_name] = { - .visible = true, - .named = true, - }, - [sym_namespace_name_as_prefix] = { - .visible = true, - .named = true, - }, - [sym_namespace_name] = { - .visible = true, - .named = true, - }, - [sym_namespace_aliasing_clause] = { - .visible = true, - .named = true, - }, - [sym_namespace_use_group] = { - .visible = true, - .named = true, - }, - [sym_namespace_use_group_clause] = { - .visible = true, - .named = true, - }, - [sym_trait_declaration] = { - .visible = true, - .named = true, - }, - [sym_interface_declaration] = { - .visible = true, - .named = true, - }, - [sym_base_clause] = { - .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, - }, - [sym_declaration_list] = { - .visible = true, - .named = true, - }, - [sym_final_modifier] = { - .visible = true, - .named = true, - }, - [sym_abstract_modifier] = { - .visible = true, - .named = true, - }, - [sym_class_interface_clause] = { - .visible = true, - .named = true, - }, - [sym__member_declaration] = { - .visible = false, - .named = true, - }, - [sym_const_declaration] = { - .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, - }, - [sym__modifier] = { - .visible = false, - .named = true, - }, - [sym_property_element] = { - .visible = true, - .named = true, - }, - [sym_property_initializer] = { - .visible = true, - .named = true, - }, - [sym_method_declaration] = { - .visible = true, - .named = true, - }, - [sym_static_modifier] = { - .visible = true, - .named = true, - }, - [sym_use_declaration] = { - .visible = true, - .named = true, - }, - [sym_use_list] = { - .visible = true, - .named = true, - }, - [sym_use_instead_of_clause] = { - .visible = true, - .named = true, - }, - [sym_use_as_clause] = { - .visible = true, - .named = true, - }, - [sym_visibility_modifier] = { - .visible = true, - .named = true, - }, - [sym_function_definition] = { - .visible = true, - .named = true, - }, - [sym__function_definition_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, - }, - [sym_variadic_parameter] = { - .visible = true, - .named = true, - }, - [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_primitive_type] = { - .visible = true, - .named = true, - }, - [sym_cast_type] = { - .visible = true, - .named = true, - }, - [sym__return_type] = { - .visible = false, - .named = true, - }, - [sym_const_element] = { - .visible = true, - .named = true, - }, - [sym_echo_statement] = { - .visible = true, - .named = true, - }, - [sym_unset_statement] = { - .visible = true, - .named = true, - }, - [sym_declare_statement] = { - .visible = true, - .named = true, - }, - [sym_declare_directive] = { - .visible = true, - .named = true, - }, - [sym_try_statement] = { - .visible = true, - .named = true, - }, - [sym_catch_clause] = { - .visible = true, - .named = true, - }, - [sym_type_list] = { - .visible = true, - .named = true, - }, - [sym_finally_clause] = { - .visible = true, - .named = true, - }, - [sym_goto_statement] = { - .visible = true, - .named = true, - }, - [sym_continue_statement] = { - .visible = true, - .named = true, - }, - [sym_break_statement] = { - .visible = true, - .named = true, - }, - [sym_return_statement] = { - .visible = true, - .named = true, - }, - [sym_throw_expression] = { - .visible = true, - .named = true, - }, - [sym_while_statement] = { - .visible = true, - .named = true, - }, - [sym_do_statement] = { - .visible = true, - .named = true, - }, - [sym_for_statement] = { - .visible = true, - .named = true, - }, - [sym__expressions] = { - .visible = false, - .named = true, - }, - [sym_sequence_expression] = { - .visible = true, - .named = true, - }, - [sym_foreach_statement] = { - .visible = true, - .named = true, - }, - [sym_foreach_pair] = { - .visible = true, - .named = true, - }, - [sym_if_statement] = { - .visible = true, - .named = true, - }, - [sym_colon_block] = { - .visible = true, - .named = true, - }, - [sym_else_if_clause] = { - .visible = true, - .named = true, - }, - [sym_else_clause] = { - .visible = true, - .named = true, - }, - [sym_else_if_clause_2] = { - .visible = true, - .named = true, - }, - [sym_else_clause_2] = { - .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, - }, - [sym_switch_block] = { - .visible = true, - .named = true, - }, - [sym_case_statement] = { - .visible = true, - .named = true, - }, - [sym_default_statement] = { - .visible = true, - .named = true, - }, - [sym_compound_statement] = { - .visible = true, - .named = true, - }, - [sym_named_label_statement] = { - .visible = true, - .named = true, - }, - [sym_expression_statement] = { - .visible = true, - .named = true, - }, - [sym__expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__unary_expression] = { - .visible = false, - .named = true, - }, - [sym_unary_op_expression] = { - .visible = true, - .named = true, - }, - [sym_exponentiation_expression] = { - .visible = true, - .named = true, - }, - [sym_clone_expression] = { - .visible = true, - .named = true, - }, - [sym__primary_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_parenthesized_expression] = { - .visible = true, - .named = true, - }, - [sym_class_constant_access_expression] = { - .visible = true, - .named = true, - }, - [sym_print_intrinsic] = { - .visible = true, - .named = true, - }, - [sym_anonymous_function_creation_expression] = { - .visible = true, - .named = true, - }, - [sym_anonymous_function_use_clause] = { - .visible = true, - .named = true, - }, - [sym_object_creation_expression] = { - .visible = true, - .named = true, - }, - [sym_update_expression] = { - .visible = true, - .named = true, - }, - [sym_cast_expression] = { - .visible = true, - .named = true, - }, - [sym_cast_variable] = { - .visible = true, - .named = true, - }, - [sym_assignment_expression] = { - .visible = true, - .named = true, - }, - [sym_reference_assignment_expression] = { - .visible = true, - .named = true, - }, - [sym_conditional_expression] = { - .visible = true, - .named = true, - }, - [sym_augmented_assignment_expression] = { - .visible = true, - .named = true, - }, - [sym_member_access_expression] = { - .visible = true, - .named = true, - }, - [sym_nullsafe_member_access_expression] = { - .visible = true, - .named = true, - }, - [sym_scoped_property_access_expression] = { - .visible = true, - .named = true, - }, - [sym_list_literal] = { - .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, - }, - [sym_scoped_call_expression] = { - .visible = true, - .named = true, - }, - [sym__scope_resolution_qualifier] = { - .visible = false, - .named = true, - }, - [sym_relative_scope] = { - .visible = true, - .named = true, - }, - [sym_arguments] = { - .visible = true, - .named = true, - }, - [sym_argument] = { - .visible = true, - .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, - }, - [sym_subscript_expression] = { - .visible = true, - .named = true, - }, - [sym__dereferencable_expression] = { - .visible = false, - .named = true, - }, - [sym_array_creation_expression] = { - .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, - }, - [sym_encapsed_string] = { - .visible = true, - .named = true, - }, - [sym_string] = { - .visible = true, - .named = true, - }, - [sym__string] = { - .visible = false, - .named = true, - }, - [sym_dynamic_variable_name] = { - .visible = true, - .named = true, - }, - [sym_variable_name] = { - .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, - }, - [sym_array_element_initializer] = { - .visible = true, - .named = true, - }, - [sym_binary_expression] = { - .visible = true, - .named = true, - }, - [sym_include_expression] = { - .visible = true, - .named = true, - }, - [sym_include_once_expression] = { - .visible = true, - .named = true, - }, - [sym_require_expression] = { - .visible = true, - .named = true, - }, - [sym_require_once_expression] = { - .visible = true, - .named = true, - }, - [sym__reserved_identifier] = { - .visible = true, - .named = true, - }, - [aux_sym_program_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_text_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_function_static_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_global_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_namespace_use_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_namespace_name_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_namespace_use_group_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_base_clause_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_enum_declaration_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_declaration_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__const_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_property_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_property_declaration_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_use_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_formal_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_union_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_unset_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_try_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_repeat2] = { - .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, - }, - [aux_sym_anonymous_function_use_clause_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__list_destructing_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__array_destructing_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_array_creation_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_list_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_encapsed_string_repeat1] = { - .visible = false, - .named = false, - }, -}; - -enum { - field_alternative = 1, - field_arguments = 2, - field_attributes = 3, - field_body = 4, - field_condition = 5, - field_conditional_expressions = 6, - field_default_value = 7, - field_function = 8, - field_left = 9, - field_modifier = 10, - field_name = 11, - field_object = 12, - field_operator = 13, - field_parameters = 14, - field_reference_modifier = 15, - field_return_expression = 16, - field_return_type = 17, - field_right = 18, - field_scope = 19, - field_type = 20, - field_value = 21, - field_visibility = 22, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_alternative] = "alternative", - [field_arguments] = "arguments", - [field_attributes] = "attributes", - [field_body] = "body", - [field_condition] = "condition", - [field_conditional_expressions] = "conditional_expressions", - [field_default_value] = "default_value", - [field_function] = "function", - [field_left] = "left", - [field_modifier] = "modifier", - [field_name] = "name", - [field_object] = "object", - [field_operator] = "operator", - [field_parameters] = "parameters", - [field_reference_modifier] = "reference_modifier", - [field_return_expression] = "return_expression", - [field_return_type] = "return_type", - [field_right] = "right", - [field_scope] = "scope", - [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}, - [5] = {.index = 2, .length = 2}, - [6] = {.index = 4, .length = 2}, - [7] = {.index = 6, .length = 5}, - [8] = {.index = 11, .length = 1}, - [9] = {.index = 12, .length = 2}, - [10] = {.index = 14, .length = 2}, - [11] = {.index = 16, .length = 2}, - [13] = {.index = 18, .length = 2}, - [14] = {.index = 20, .length = 1}, - [15] = {.index = 21, .length = 2}, - [16] = {.index = 23, .length = 3}, - [17] = {.index = 26, .length = 2}, - [18] = {.index = 28, .length = 2}, - [19] = {.index = 30, .length = 6}, - [20] = {.index = 36, .length = 2}, - [21] = {.index = 38, .length = 2}, - [22] = {.index = 40, .length = 2}, - [23] = {.index = 42, .length = 2}, - [24] = {.index = 44, .length = 2}, - [25] = {.index = 46, .length = 2}, - [26] = {.index = 48, .length = 3}, - [27] = {.index = 51, .length = 3}, - [28] = {.index = 54, .length = 3}, - [29] = {.index = 57, .length = 1}, - [30] = {.index = 58, .length = 3}, - [31] = {.index = 61, .length = 2}, - [32] = {.index = 63, .length = 2}, - [33] = {.index = 65, .length = 2}, - [34] = {.index = 67, .length = 2}, - [35] = {.index = 69, .length = 1}, - [36] = {.index = 70, .length = 3}, - [37] = {.index = 73, .length = 3}, - [38] = {.index = 76, .length = 1}, - [41] = {.index = 77, .length = 1}, - [42] = {.index = 78, .length = 3}, - [43] = {.index = 81, .length = 2}, - [44] = {.index = 83, .length = 2}, - [45] = {.index = 85, .length = 3}, - [46] = {.index = 88, .length = 3}, - [47] = {.index = 91, .length = 3}, - [48] = {.index = 94, .length = 3}, - [49] = {.index = 97, .length = 3}, - [50] = {.index = 100, .length = 3}, - [51] = {.index = 103, .length = 2}, - [52] = {.index = 105, .length = 2}, - [53] = {.index = 107, .length = 3}, - [54] = {.index = 110, .length = 2}, - [55] = {.index = 112, .length = 3}, - [56] = {.index = 115, .length = 2}, - [57] = {.index = 117, .length = 3}, - [58] = {.index = 120, .length = 3}, - [59] = {.index = 123, .length = 2}, - [60] = {.index = 125, .length = 4}, - [61] = {.index = 129, .length = 4}, - [62] = {.index = 133, .length = 3}, - [63] = {.index = 136, .length = 3}, - [64] = {.index = 139, .length = 1}, - [65] = {.index = 140, .length = 4}, - [66] = {.index = 144, .length = 1}, - [67] = {.index = 145, .length = 2}, - [68] = {.index = 147, .length = 3}, - [69] = {.index = 150, .length = 2}, - [70] = {.index = 152, .length = 4}, - [71] = {.index = 156, .length = 2}, - [72] = {.index = 158, .length = 3}, - [73] = {.index = 161, .length = 3}, - [74] = {.index = 164, .length = 2}, - [75] = {.index = 166, .length = 3}, - [76] = {.index = 169, .length = 4}, - [77] = {.index = 173, .length = 4}, - [78] = {.index = 177, .length = 3}, - [79] = {.index = 180, .length = 3}, - [80] = {.index = 183, .length = 4}, - [81] = {.index = 187, .length = 4}, - [82] = {.index = 191, .length = 3}, - [83] = {.index = 194, .length = 3}, - [84] = {.index = 197, .length = 3}, - [85] = {.index = 200, .length = 3}, - [86] = {.index = 203, .length = 3}, - [87] = {.index = 206, .length = 3}, - [88] = {.index = 209, .length = 3}, - [89] = {.index = 212, .length = 3}, - [90] = {.index = 215, .length = 4}, - [91] = {.index = 219, .length = 3}, - [92] = {.index = 222, .length = 4}, - [93] = {.index = 226, .length = 2}, - [94] = {.index = 228, .length = 5}, - [95] = {.index = 233, .length = 4}, - [96] = {.index = 237, .length = 5}, - [97] = {.index = 242, .length = 2}, - [98] = {.index = 244, .length = 4}, - [99] = {.index = 248, .length = 1}, - [100] = {.index = 249, .length = 2}, - [101] = {.index = 251, .length = 1}, - [104] = {.index = 252, .length = 2}, - [105] = {.index = 254, .length = 3}, - [106] = {.index = 257, .length = 3}, - [107] = {.index = 260, .length = 3}, - [108] = {.index = 263, .length = 3}, - [109] = {.index = 266, .length = 4}, - [110] = {.index = 270, .length = 4}, - [111] = {.index = 274, .length = 3}, - [112] = {.index = 277, .length = 5}, - [113] = {.index = 282, .length = 4}, - [114] = {.index = 286, .length = 4}, - [115] = {.index = 290, .length = 3}, - [116] = {.index = 293, .length = 4}, - [117] = {.index = 297, .length = 4}, - [118] = {.index = 301, .length = 4}, - [119] = {.index = 305, .length = 4}, - [120] = {.index = 309, .length = 4}, - [121] = {.index = 313, .length = 4}, - [122] = {.index = 317, .length = 4}, - [123] = {.index = 321, .length = 4}, - [124] = {.index = 325, .length = 5}, - [125] = {.index = 330, .length = 6}, - [126] = {.index = 336, .length = 1}, - [127] = {.index = 337, .length = 2}, - [128] = {.index = 339, .length = 1}, - [129] = {.index = 340, .length = 4}, - [130] = {.index = 344, .length = 5}, - [131] = {.index = 349, .length = 4}, - [132] = {.index = 353, .length = 4}, - [133] = {.index = 357, .length = 5}, - [134] = {.index = 362, .length = 3}, - [135] = {.index = 365, .length = 5}, - [136] = {.index = 370, .length = 4}, - [137] = {.index = 374, .length = 4}, - [138] = {.index = 378, .length = 5}, - [139] = {.index = 383, .length = 2}, - [140] = {.index = 385, .length = 2}, - [141] = {.index = 387, .length = 3}, - [142] = {.index = 390, .length = 5}, - [143] = {.index = 395, .length = 5}, - [144] = {.index = 400, .length = 3}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_name, 0}, - [1] = - {field_body, 1}, - [2] = - {field_name, 0, .inherited = true}, - {field_object, 0, .inherited = true}, - [4] = - {field_arguments, 1}, - {field_function, 0}, - [6] = - {field_body, 1}, - {field_name, 0, .inherited = true}, - {field_parameters, 0, .inherited = true}, - {field_reference_modifier, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - [11] = - {field_name, 1}, - [12] = - {field_body, 2}, - {field_name, 1}, - [14] = - {field_name, 1}, - {field_parameters, 2}, - [16] = - {field_body, 2}, - {field_parameters, 1}, - [18] = - {field_body, 2}, - {field_condition, 1}, - [20] = - {field_parameters, 1}, - [21] = - {field_left, 0}, - {field_right, 2}, - [23] = - {field_left, 0}, - {field_operator, 1}, - {field_right, 2}, - [26] = - {field_name, 2}, - {field_scope, 0}, - [28] = - {field_name, 2}, - {field_object, 0}, - [30] = - {field_attributes, 0}, - {field_body, 2}, - {field_name, 1, .inherited = true}, - {field_parameters, 1, .inherited = true}, - {field_reference_modifier, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [36] = - {field_body, 3}, - {field_parameters, 2}, - [38] = - {field_name, 0}, - {field_value, 2}, - [40] = - {field_name, 1}, - {field_reference_modifier, 0}, - [42] = - {field_name, 1}, - {field_visibility, 0}, - [44] = - {field_name, 1}, - {field_type, 0}, - [46] = - {field_attributes, 0}, - {field_name, 1}, - [48] = - {field_name, 1}, - {field_parameters, 2}, - {field_return_type, 3, .inherited = true}, - [51] = - {field_name, 2}, - {field_parameters, 3}, - {field_reference_modifier, 1}, - [54] = - {field_body, 3}, - {field_parameters, 2}, - {field_reference_modifier, 1}, - [57] = - {field_return_type, 1}, - [58] = - {field_body, 3}, - {field_parameters, 1}, - {field_return_type, 2, .inherited = true}, - [61] = - {field_body, 3}, - {field_parameters, 1}, - [63] = - {field_attributes, 0, .inherited = true}, - {field_modifier, 0, .inherited = true}, - [65] = - {field_body, 3}, - {field_name, 1}, - [67] = - {field_type, 1}, - {field_value, 3}, - [69] = - {field_alternative, 0}, - [70] = - {field_alternative, 3}, - {field_body, 2}, - {field_condition, 1}, - [73] = - {field_alternative, 3, .inherited = true}, - {field_body, 2}, - {field_condition, 1}, - [76] = - {field_attributes, 1}, - [77] = - {field_reference_modifier, 0}, - [78] = - {field_body, 3}, - {field_modifier, 0}, - {field_name, 2}, - [81] = - {field_alternative, 3}, - {field_condition, 0}, - [83] = - {field_left, 0}, - {field_right, 3}, - [85] = - {field_arguments, 3}, - {field_name, 2}, - {field_scope, 0}, - [88] = - {field_arguments, 3}, - {field_name, 2}, - {field_object, 0}, - [91] = - {field_attributes, 0}, - {field_body, 3}, - {field_parameters, 2}, - [94] = - {field_attributes, 0}, - {field_body, 3}, - {field_name, 2}, - [97] = - {field_body, 4}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - [100] = - {field_body, 4}, - {field_parameters, 2}, - {field_return_type, 3, .inherited = true}, - [103] = - {field_body, 4}, - {field_parameters, 2}, - [105] = - {field_name, 2}, - {field_reference_modifier, 0}, - [107] = - {field_name, 2}, - {field_type, 1}, - {field_visibility, 0}, - [110] = - {field_name, 2}, - {field_type, 0}, - [112] = - {field_name, 2}, - {field_reference_modifier, 1}, - {field_type, 0}, - [115] = - {field_attributes, 0}, - {field_name, 2}, - [117] = - {field_attributes, 0}, - {field_name, 2}, - {field_reference_modifier, 1}, - [120] = - {field_attributes, 0}, - {field_name, 2}, - {field_type, 1}, - [123] = - {field_default_value, 2}, - {field_name, 0}, - [125] = - {field_name, 2}, - {field_parameters, 3}, - {field_reference_modifier, 1}, - {field_return_type, 4, .inherited = true}, - [129] = - {field_body, 4}, - {field_parameters, 2}, - {field_reference_modifier, 1}, - {field_return_type, 3, .inherited = true}, - [133] = - {field_body, 4}, - {field_parameters, 2}, - {field_reference_modifier, 1}, - [136] = - {field_body, 4}, - {field_parameters, 1}, - {field_return_type, 3, .inherited = true}, - [139] = - {field_modifier, 0}, - [140] = - {field_name, 0, .inherited = true}, - {field_parameters, 0, .inherited = true}, - {field_reference_modifier, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - [144] = - {field_attributes, 0}, - [145] = - {field_body, 4}, - {field_name, 1}, - [147] = - {field_body, 4}, - {field_parameters, 1}, - {field_return_type, 2, .inherited = true}, - [150] = - {field_body, 1}, - {field_condition, 3}, - [152] = - {field_alternative, 3, .inherited = true}, - {field_alternative, 4}, - {field_body, 2}, - {field_condition, 1}, - [156] = - {field_alternative, 0, .inherited = true}, - {field_alternative, 1, .inherited = true}, - [158] = - {field_body, 4}, - {field_modifier, 0}, - {field_name, 2}, - [161] = - {field_alternative, 4}, - {field_body, 2}, - {field_condition, 0}, - [164] = - {field_name, 3}, - {field_object, 0}, - [166] = - {field_attributes, 0}, - {field_body, 4}, - {field_parameters, 3}, - [169] = - {field_attributes, 0}, - {field_body, 4}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - [173] = - {field_attributes, 0}, - {field_body, 4}, - {field_parameters, 2}, - {field_return_type, 3, .inherited = true}, - [177] = - {field_attributes, 0}, - {field_body, 4}, - {field_parameters, 2}, - [180] = - {field_attributes, 0}, - {field_body, 4}, - {field_name, 2}, - [183] = - {field_attributes, 0}, - {field_body, 4}, - {field_modifier, 1}, - {field_name, 3}, - [187] = - {field_body, 5}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 4, .inherited = true}, - [191] = - {field_body, 5}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - [194] = - {field_body, 5}, - {field_parameters, 2}, - {field_return_type, 4, .inherited = true}, - [197] = - {field_default_value, 3}, - {field_name, 1}, - {field_reference_modifier, 0}, - [200] = - {field_default_value, 3}, - {field_name, 1}, - {field_visibility, 0}, - [203] = - {field_name, 3}, - {field_reference_modifier, 1}, - {field_type, 0}, - [206] = - {field_default_value, 3}, - {field_name, 1}, - {field_type, 0}, - [209] = - {field_attributes, 0}, - {field_name, 3}, - {field_reference_modifier, 1}, - [212] = - {field_attributes, 0}, - {field_name, 3}, - {field_type, 1}, - [215] = - {field_attributes, 0}, - {field_name, 3}, - {field_reference_modifier, 2}, - {field_type, 1}, - [219] = - {field_attributes, 0}, - {field_default_value, 3}, - {field_name, 1}, - [222] = - {field_body, 5}, - {field_parameters, 2}, - {field_reference_modifier, 1}, - {field_return_type, 4, .inherited = true}, - [226] = - {field_attributes, 0}, - {field_modifier, 1}, - [228] = - {field_attributes, 0}, - {field_name, 1, .inherited = true}, - {field_parameters, 1, .inherited = true}, - {field_reference_modifier, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [233] = - {field_name, 1, .inherited = true}, - {field_parameters, 1, .inherited = true}, - {field_reference_modifier, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [237] = - {field_body, 2}, - {field_name, 1, .inherited = true}, - {field_parameters, 1, .inherited = true}, - {field_reference_modifier, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [242] = - {field_body, 5}, - {field_name, 1}, - [244] = - {field_body, 5}, - {field_parameters, 2}, - {field_reference_modifier, 1}, - {field_return_type, 3, .inherited = true}, - [248] = - {field_return_expression, 2}, - [249] = - {field_conditional_expressions, 0}, - {field_return_expression, 2}, - [251] = - {field_value, 1}, - [252] = - {field_name, 0}, - {field_reference_modifier, 2}, - [254] = - {field_body, 5}, - {field_modifier, 0}, - {field_name, 2}, - [257] = - {field_body, 5}, - {field_parameters, 2}, - {field_return_type, 3, .inherited = true}, - [260] = - {field_arguments, 5}, - {field_name, 3}, - {field_scope, 0}, - [263] = - {field_arguments, 5}, - {field_name, 3}, - {field_object, 0}, - [266] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - [270] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 3}, - {field_return_type, 4, .inherited = true}, - [274] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 3}, - [277] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 4, .inherited = true}, - [282] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - [286] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 2}, - {field_return_type, 4, .inherited = true}, - [290] = - {field_attributes, 0}, - {field_body, 5}, - {field_name, 2}, - [293] = - {field_attributes, 0}, - {field_body, 5}, - {field_parameters, 2}, - {field_return_type, 3, .inherited = true}, - [297] = - {field_attributes, 0}, - {field_body, 5}, - {field_modifier, 1}, - {field_name, 3}, - [301] = - {field_body, 6}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 5, .inherited = true}, - [305] = - {field_default_value, 4}, - {field_name, 2}, - {field_type, 1}, - {field_visibility, 0}, - [309] = - {field_default_value, 4}, - {field_name, 2}, - {field_reference_modifier, 1}, - {field_type, 0}, - [313] = - {field_attributes, 0}, - {field_default_value, 4}, - {field_name, 2}, - {field_reference_modifier, 1}, - [317] = - {field_attributes, 0}, - {field_name, 4}, - {field_reference_modifier, 2}, - {field_type, 1}, - [321] = - {field_attributes, 0}, - {field_default_value, 4}, - {field_name, 2}, - {field_type, 1}, - [325] = - {field_attributes, 0}, - {field_name, 2, .inherited = true}, - {field_parameters, 2, .inherited = true}, - {field_reference_modifier, 2, .inherited = true}, - {field_return_type, 2, .inherited = true}, - [330] = - {field_attributes, 0}, - {field_body, 3}, - {field_name, 2, .inherited = true}, - {field_parameters, 2, .inherited = true}, - {field_reference_modifier, 2, .inherited = true}, - {field_return_type, 2, .inherited = true}, - [336] = - {field_type, 1}, - [337] = - {field_body, 4}, - {field_type, 2}, - [339] = - {field_body, 6}, - [340] = - {field_body, 6}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 4, .inherited = true}, - [344] = - {field_attributes, 0}, - {field_body, 6}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - {field_return_type, 5, .inherited = true}, - [349] = - {field_attributes, 0}, - {field_body, 6}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - [353] = - {field_attributes, 0}, - {field_body, 6}, - {field_parameters, 3}, - {field_return_type, 5, .inherited = true}, - [357] = - {field_attributes, 0}, - {field_body, 6}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 5, .inherited = true}, - [362] = - {field_attributes, 0}, - {field_body, 6}, - {field_name, 2}, - [365] = - {field_attributes, 0}, - {field_body, 6}, - {field_parameters, 3}, - {field_reference_modifier, 2}, - {field_return_type, 4, .inherited = true}, - [370] = - {field_attributes, 0}, - {field_body, 6}, - {field_modifier, 1}, - {field_name, 3}, - [374] = - {field_attributes, 0}, - {field_body, 6}, - {field_parameters, 3}, - {field_return_type, 4, .inherited = true}, - [378] = - {field_attributes, 0}, - {field_default_value, 5}, - {field_name, 3}, - {field_reference_modifier, 2}, - {field_type, 1}, - [383] = - {field_attributes, 0}, - {field_type, 2}, - [385] = - {field_name, 1}, - {field_value, 3}, - [387] = - {field_body, 5}, - {field_name, 3}, - {field_type, 2}, - [390] = - {field_attributes, 0}, - {field_body, 7}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - {field_return_type, 6, .inherited = true}, - [395] = - {field_attributes, 0}, - {field_body, 7}, - {field_parameters, 4}, - {field_reference_modifier, 3}, - {field_return_type, 5, .inherited = true}, - [400] = - {field_attributes, 0}, - {field_name, 2}, - {field_value, 4}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, - [3] = { - [0] = sym_list_literal, - }, - [4] = { - [0] = sym_string, - }, - [12] = { - [0] = anon_sym_array, - }, - [39] = { - [1] = sym_list_literal, - }, - [40] = { - [2] = sym_list_literal, - }, - [102] = { - [3] = sym_list_literal, - }, - [103] = { - [4] = sym_list_literal, - }, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - sym__list_destructing, 2, - sym__list_destructing, - sym_list_literal, - sym__array_destructing, 2, - sym__array_destructing, - sym_list_literal, - 0, -}; - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(80); - if (lookahead == '!') ADVANCE(147); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '\'') ADVANCE(180); - if (lookahead == '(') ADVANCE(109); - if (lookahead == ')') ADVANCE(110); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(226); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(96); - if (lookahead == '<') ADVANCE(210); - if (lookahead == '=') ADVANCE(102); - if (lookahead == '>') ADVANCE(211); - if (lookahead == '?') ADVANCE(112); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(202); - if (lookahead == '_') ADVANCE(268); - if (lookahead == '`') ADVANCE(45); - if (lookahead == '{') ADVANCE(104); - if (lookahead == '|') ADVANCE(117); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '~') ADVANCE(145); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(256); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(229); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(233); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(251); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(266); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(259); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(255); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(249); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); - if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 1: - if (lookahead == '\n') ADVANCE(271); - END_STATE(); - case 2: - if (lookahead == '\n') ADVANCE(271); - if (lookahead == '\r') ADVANCE(1); - if (lookahead != 0 && - lookahead != '>') ADVANCE(272); - END_STATE(); - case 3: - if (lookahead == '!') ADVANCE(147); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '%') ADVANCE(227); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '\'') ADVANCE(180); - if (lookahead == '(') ADVANCE(109); - if (lookahead == ')') ADVANCE(110); - if (lookahead == '*') ADVANCE(224); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(225); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(106); - if (lookahead == ';') ADVANCE(96); - if (lookahead == '<') ADVANCE(208); - if (lookahead == '=') ADVANCE(29); - if (lookahead == '>') ADVANCE(212); - if (lookahead == '?') ADVANCE(115); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(201); - if (lookahead == '_') ADVANCE(268); - if (lookahead == '`') ADVANCE(45); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '~') ADVANCE(145); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(256); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(230); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(234); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(266); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(264); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(255); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); - if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 4: - if (lookahead == '!') ADVANCE(146); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '&') ADVANCE(97); - if (lookahead == '\'') ADVANCE(180); - if (lookahead == '(') ADVANCE(109); - if (lookahead == ')') ADVANCE(110); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(125); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(129); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '_') ADVANCE(268); - if (lookahead == '`') ADVANCE(45); - if (lookahead == '~') ADVANCE(145); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(256); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(230); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(234); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(266); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(264); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(255); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(4) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); - if (('C' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 5: - if (lookahead == '!') ADVANCE(146); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '\'') ADVANCE(180); - if (lookahead == '(') ADVANCE(109); - if (lookahead == '+') ADVANCE(139); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(126); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(129); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '_') ADVANCE(268); - if (lookahead == '`') ADVANCE(45); - if (lookahead == '~') ADVANCE(145); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(256); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(229); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(233); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(251); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(266); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(259); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(255); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(249); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); - if (('C' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(28); - if (lookahead == '#') ADVANCE(274); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '%') ADVANCE(227); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(109); - if (lookahead == ')') ADVANCE(110); - if (lookahead == '*') ADVANCE(224); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(144); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(225); - if (lookahead == '0') ADVANCE(134); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(96); - if (lookahead == '<') ADVANCE(208); - if (lookahead == '=') ADVANCE(102); - if (lookahead == '>') ADVANCE(212); - if (lookahead == '?') ADVANCE(113); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(201); - if (lookahead == '{') ADVANCE(104); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(136); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(28); - if (lookahead == '#') ADVANCE(274); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '%') ADVANCE(227); - if (lookahead == '&') ADVANCE(98); - if (lookahead == ')') ADVANCE(110); - if (lookahead == '*') ADVANCE(224); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(225); - if (lookahead == ':') ADVANCE(106); - if (lookahead == ';') ADVANCE(96); - if (lookahead == '<') ADVANCE(208); - if (lookahead == '=') ADVANCE(29); - if (lookahead == '>') ADVANCE(212); - if (lookahead == '?') ADVANCE(115); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(201); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(7) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 8: - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '\'') ADVANCE(180); - if (lookahead == '(') ADVANCE(109); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(256); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(230); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(264); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(8) - if (('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 9: - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(274); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '\'') ADVANCE(180); - if (lookahead == '-') ADVANCE(30); - if (lookahead == '.') ADVANCE(126); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(129); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(63); - if (lookahead == '_') ADVANCE(66); - if (lookahead == '{') ADVANCE(104); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(11); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(49); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(59); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(56); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(10) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); - END_STATE(); - case 10: - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(274); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '\'') ADVANCE(180); - if (lookahead == '-') ADVANCE(30); - if (lookahead == '.') ADVANCE(126); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(129); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(46); - if (lookahead == '_') ADVANCE(66); - if (lookahead == '{') ADVANCE(104); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(11); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(49); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(59); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(56); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(10) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); - END_STATE(); - case 11: - if (lookahead == '"') ADVANCE(176); - if (lookahead == '\'') ADVANCE(181); - END_STATE(); - case 12: - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '&') ADVANCE(97); - if (lookahead == ')') ADVANCE(110); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '.') ADVANCE(25); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '?') ADVANCE(114); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(12) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 13: - if (lookahead == '#') ADVANCE(273); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '}') ADVANCE(105); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(264); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(13) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 14: - if (lookahead == '#') ADVANCE(274); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '&') ADVANCE(97); - if (lookahead == '(') ADVANCE(109); - if (lookahead == '.') ADVANCE(25); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '?') ADVANCE(114); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '{') ADVANCE(104); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(264); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(14) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 15: - if (lookahead == '#') ADVANCE(274); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '&') ADVANCE(97); - if (lookahead == ')') ADVANCE(110); - if (lookahead == '.') ADVANCE(25); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '=') ADVANCE(31); - if (lookahead == '?') ADVANCE(114); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '{') ADVANCE(104); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(15) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 16: - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(272); - END_STATE(); - case 17: - if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(271); - if (lookahead != 0) ADVANCE(18); - END_STATE(); - case 18: - if (lookahead == '*') ADVANCE(17); - if (lookahead != 0) ADVANCE(18); - END_STATE(); - case 19: - if (lookahead == '-') ADVANCE(45); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 20: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 21: - if (lookahead == '-') ADVANCE(41); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 22: - if (lookahead == '-') ADVANCE(73); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 23: - if (lookahead == '-') ADVANCE(40); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 24: - if (lookahead == '-') ADVANCE(42); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 25: - if (lookahead == '.') ADVANCE(27); - END_STATE(); - case 26: - if (lookahead == '.') ADVANCE(126); - if (lookahead == '_') ADVANCE(66); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(26); - END_STATE(); - case 27: - if (lookahead == '.') ADVANCE(111); - END_STATE(); - case 28: - if (lookahead == '=') ADVANCE(204); - END_STATE(); - case 29: - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(108); - END_STATE(); - case 30: - if (lookahead == '>') ADVANCE(167); - END_STATE(); - case 31: - if (lookahead == '>') ADVANCE(108); - END_STATE(); - case 32: - if (lookahead == '>') ADVANCE(83); - END_STATE(); - case 33: - if (lookahead == '>') ADVANCE(168); - END_STATE(); - case 34: - if (lookahead == '?') ADVANCE(82); - END_STATE(); - case 35: - if (lookahead == 'A') ADVANCE(20); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead == 'a') ADVANCE(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 36: - if (lookahead == 'A') ADVANCE(22); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead == 'a') ADVANCE(19); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 37: - if (lookahead == 'A') ADVANCE(23); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead == 'a') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 38: - if (lookahead == 'A') ADVANCE(23); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead == 'a') ADVANCE(24); - if (lookahead != 0 && - (lookahead < '0' || '9' < lookahead)) ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); - END_STATE(); - case 39: - if (lookahead == 'F') ADVANCE(36); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 40: - if (lookahead == 'F') ADVANCE(38); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 41: - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead == 'f') ADVANCE(36); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 42: - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead == 'f') ADVANCE(38); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 43: - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead == '{') ADVANCE(37); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 44: - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(45); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 45: - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 46: - if (lookahead == 'u') ADVANCE(178); - END_STATE(); - case 47: - if (lookahead == '}') ADVANCE(172); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); - END_STATE(); - case 48: - if (lookahead == '+' || - lookahead == '-') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); - END_STATE(); - case 49: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(52); - END_STATE(); - case 50: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(192); - END_STATE(); - case 51: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(55); - END_STATE(); - case 52: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(57); - END_STATE(); - case 53: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(194); - END_STATE(); - case 54: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(53); - END_STATE(); - case 55: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(81); - END_STATE(); - case 56: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(58); - END_STATE(); - case 57: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(50); - END_STATE(); - case 58: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(50); - END_STATE(); - case 59: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(54); - END_STATE(); - case 60: - if (lookahead == '0' || - lookahead == '1') ADVANCE(132); - END_STATE(); - case 61: - if (lookahead == '8' || - lookahead == '9') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); - END_STATE(); - case 62: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(135); - END_STATE(); - case 63: - if (lookahead == '"' || - lookahead == '$' || - lookahead == '\\' || - lookahead == 'e' || - lookahead == 'f' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't' || - lookahead == 'v') ADVANCE(172); - if (lookahead == 'u') ADVANCE(179); - if (lookahead == 'x') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(174); - END_STATE(); - case 64: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); - END_STATE(); - case 65: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); - END_STATE(); - case 66: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(26); - END_STATE(); - case 67: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); - END_STATE(); - case 68: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); - END_STATE(); - case 69: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(133); - END_STATE(); - case 70: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(175); - END_STATE(); - case 71: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); - END_STATE(); - case 72: - if (lookahead != 0 && - (lookahead < '0' || '7' < lookahead) && - lookahead != 'X' && - lookahead != '`' && - lookahead != 'u' && - lookahead != 'x') ADVANCE(45); - if (lookahead == 'u') ADVANCE(43); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(35); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(44); - END_STATE(); - case 73: - if (lookahead != 0 && - lookahead != '\\' && - lookahead != '`') ADVANCE(45); - if (lookahead == '\\') ADVANCE(72); - if (lookahead == '`') ADVANCE(153); - END_STATE(); - case 74: - if (lookahead != 0 && - lookahead != '*') ADVANCE(187); - if (lookahead == '*') ADVANCE(186); - END_STATE(); - case 75: - if (lookahead != 0) ADVANCE(190); - END_STATE(); - case 76: - if (eof) ADVANCE(80); - if (lookahead == '!') ADVANCE(146); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(273); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '&') ADVANCE(97); - if (lookahead == '\'') ADVANCE(180); - if (lookahead == '(') ADVANCE(109); - if (lookahead == ')') ADVANCE(110); - if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(142); - if (lookahead == '.') ADVANCE(126); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(106); - if (lookahead == ';') ADVANCE(96); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '_') ADVANCE(268); - if (lookahead == '`') ADVANCE(45); - if (lookahead == '{') ADVANCE(104); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '~') ADVANCE(145); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(256); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(230); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(234); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(266); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(264); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(255); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(76) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); - if (('C' <= lookahead && lookahead <= 'Z') || - ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 77: - if (eof) ADVANCE(80); - if (lookahead == '!') ADVANCE(28); - if (lookahead == '#') ADVANCE(274); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '\'') ADVANCE(180); - if (lookahead == '(') ADVANCE(109); - if (lookahead == ')') ADVANCE(110); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(140); - if (lookahead == ',') ADVANCE(101); - if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(226); - if (lookahead == '0') ADVANCE(134); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(96); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(102); - if (lookahead == '>') ADVANCE(211); - if (lookahead == '?') ADVANCE(112); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == ']') ADVANCE(170); - if (lookahead == '^') ADVANCE(202); - if (lookahead == '{') ADVANCE(104); - if (lookahead == '|') ADVANCE(117); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(77) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(136); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 78: - if (eof) ADVANCE(80); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(274); - if (lookahead == '$') ADVANCE(196); - if (lookahead == '&') ADVANCE(97); - if (lookahead == '\'') ADVANCE(180); - if (lookahead == '(') ADVANCE(109); - if (lookahead == '.') ADVANCE(25); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(134); - if (lookahead == '<') ADVANCE(34); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(105); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(256); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(230); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(264); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(78) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(136); - if (('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 79: - if (eof) ADVANCE(80); - if (lookahead == '#') ADVANCE(93); - if (lookahead == '/') ADVANCE(89); - if (lookahead == '<') ADVANCE(85); - if (lookahead == '?') ADVANCE(94); - if (lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(88); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(79) - if (lookahead != 0) ADVANCE(95); - END_STATE(); - case 80: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 81: - ACCEPT_TOKEN(sym_php_tag); - END_STATE(); - case 82: - ACCEPT_TOKEN(sym_php_tag); - if (lookahead == '=') ADVANCE(81); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(51); - END_STATE(); - case 83: - ACCEPT_TOKEN(anon_sym_QMARK_GT); - END_STATE(); - case 84: - ACCEPT_TOKEN(anon_sym_QMARK_GT); - if (lookahead != 0 && - lookahead != '<') ADVANCE(95); - END_STATE(); - case 85: - ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '?') ADVANCE(82); - END_STATE(); - case 86: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(95); - if (lookahead == '\r') ADVANCE(87); - if (lookahead == '<') ADVANCE(272); - if (lookahead == '>') ADVANCE(95); - if (lookahead != 0) ADVANCE(92); - END_STATE(); - case 87: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(95); - if (lookahead != 0 && - lookahead != '<') ADVANCE(95); - END_STATE(); - case 88: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '#') ADVANCE(93); - if (lookahead == '/') ADVANCE(89); - if (lookahead == '?') ADVANCE(94); - if (lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(88); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(88); - if (lookahead != 0 && - lookahead != '<') ADVANCE(95); - END_STATE(); - case 89: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(91); - if (lookahead == '/') ADVANCE(92); - if (lookahead != 0 && - lookahead != '<') ADVANCE(95); - END_STATE(); - case 90: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '/') ADVANCE(95); - if (lookahead == '<') ADVANCE(18); - if (lookahead != 0) ADVANCE(91); - END_STATE(); - case 91: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '<') ADVANCE(18); - if (lookahead != 0) ADVANCE(91); - END_STATE(); - case 92: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '<') ADVANCE(272); - if (lookahead == '?') ADVANCE(86); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(95); - if (lookahead != 0) ADVANCE(92); - END_STATE(); - case 93: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '<') ADVANCE(272); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '?' || - lookahead == '[') ADVANCE(95); - if (lookahead != 0) ADVANCE(92); - END_STATE(); - case 94: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '>') ADVANCE(84); - if (lookahead != 0 && - lookahead != '<') ADVANCE(95); - END_STATE(); - case 95: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead != 0 && - lookahead != '<') ADVANCE(95); - END_STATE(); - case 96: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 97: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 98: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(200); - END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(200); - if (lookahead == '=') ADVANCE(163); - END_STATE(); - case 100: - ACCEPT_TOKEN(aux_sym_function_static_declaration_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 101: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(108); - END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_BSLASH); - END_STATE(); - case 104: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 107: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(150); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_EQ_GT); - END_STATE(); - case 109: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 110: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 111: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(33); - if (lookahead == '>') ADVANCE(83); - if (lookahead == '?') ADVANCE(198); - END_STATE(); - case 113: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(33); - if (lookahead == '>') ADVANCE(83); - if (lookahead == '?') ADVANCE(197); - END_STATE(); - case 114: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(83); - END_STATE(); - case 115: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(83); - if (lookahead == '?') ADVANCE(197); - END_STATE(); - case 116: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 117: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(165); - if (lookahead == '|') ADVANCE(199); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(199); - END_STATE(); - case 119: - ACCEPT_TOKEN(aux_sym_cast_type_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 120: - ACCEPT_TOKEN(aux_sym_cast_type_token3); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 121: - ACCEPT_TOKEN(aux_sym_cast_type_token6); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 122: - ACCEPT_TOKEN(aux_sym_cast_type_token8); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 123: - ACCEPT_TOKEN(aux_sym_cast_type_token11); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 124: - ACCEPT_TOKEN(aux_sym_cast_type_token12); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 125: - ACCEPT_TOKEN(sym_float); - if (lookahead == '.') ADVANCE(27); - if (lookahead == '_') ADVANCE(65); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); - END_STATE(); - case 126: - ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(65); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); - END_STATE(); - case 127: - ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 128: - ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); - END_STATE(); - case 129: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(126); - if (lookahead == '_') ADVANCE(61); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(60); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(135); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(69); - if (lookahead == '8' || - lookahead == '9') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); - END_STATE(); - case 130: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(126); - if (lookahead == '_') ADVANCE(61); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (lookahead == '8' || - lookahead == '9') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); - END_STATE(); - case 131: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(126); - if (lookahead == '_') ADVANCE(64); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); - END_STATE(); - case 132: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '0' || - lookahead == '1') ADVANCE(132); - END_STATE(); - case 133: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(133); - END_STATE(); - case 134: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(62); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(60); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(135); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(135); - END_STATE(); - case 135: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(135); - END_STATE(); - case 136: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(151); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '=') ADVANCE(158); - END_STATE(); - case 141: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 142: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(152); - END_STATE(); - case 143: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(152); - if (lookahead == '=') ADVANCE(159); - if (lookahead == '>') ADVANCE(167); - END_STATE(); - case 144: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(167); - END_STATE(); - case 145: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 146: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(204); - END_STATE(); - case 148: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - END_STATE(); - case 149: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(154); - END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_shell_command_expression); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_DOT_EQ); - END_STATE(); - case 161: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); - END_STATE(); - case 162: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_AMP_EQ); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); - END_STATE(); - case 166: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); - END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); - END_STATE(); - case 169: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_POUND_LBRACK); - END_STATE(); - case 172: - ACCEPT_TOKEN(sym_escape_sequence); - END_STATE(); - case 173: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(172); - END_STATE(); - case 174: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(173); - END_STATE(); - case 175: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); - END_STATE(); - case 176: - ACCEPT_TOKEN(aux_sym_encapsed_string_token1); - END_STATE(); - case 177: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 178: - ACCEPT_TOKEN(anon_sym_BSLASHu); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_BSLASHu); - if (lookahead == '{') ADVANCE(71); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 181: - ACCEPT_TOKEN(aux_sym_string_token1); - END_STATE(); - case 182: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\r') ADVANCE(183); - if (lookahead == '>') ADVANCE(190); - if (lookahead == '\\') ADVANCE(275); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(189); - END_STATE(); - case 183: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '\n') ADVANCE(190); - if (lookahead == '\\') ADVANCE(75); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(190); - END_STATE(); - case 184: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '#') ADVANCE(191); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '?') ADVANCE(188); - if (lookahead == '\\') ADVANCE(75); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(184); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(190); - END_STATE(); - case 185: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(187); - if (lookahead == '/') ADVANCE(189); - if (lookahead == '\\') ADVANCE(75); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(190); - END_STATE(); - case 186: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(186); - if (lookahead == '/') ADVANCE(190); - if (lookahead == '\\') ADVANCE(74); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); - END_STATE(); - case 187: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(186); - if (lookahead == '\\') ADVANCE(74); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); - END_STATE(); - case 188: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '>') ADVANCE(190); - if (lookahead == '\\') ADVANCE(75); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(190); - END_STATE(); - case 189: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '?') ADVANCE(182); - if (lookahead == '\\') ADVANCE(275); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(190); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(189); - END_STATE(); - case 190: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '\\') ADVANCE(75); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(190); - END_STATE(); - case 191: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '\\') ADVANCE(275); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '?' || - lookahead == '[') ADVANCE(190); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(189); - END_STATE(); - case 192: - ACCEPT_TOKEN(sym_boolean); - END_STATE(); - case 193: - ACCEPT_TOKEN(sym_boolean); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 194: - ACCEPT_TOKEN(sym_null); - END_STATE(); - case 195: - ACCEPT_TOKEN(sym_null); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(166); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(164); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(206); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(207); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_LT_GT); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); - END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); - END_STATE(); - case 208: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(213); - if (lookahead == '>') ADVANCE(205); - END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(217); - if (lookahead == '=') ADVANCE(213); - if (lookahead == '>') ADVANCE(205); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '?') ADVANCE(82); - END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(214); - if (lookahead == '>') ADVANCE(219); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(214); - if (lookahead == '>') ADVANCE(218); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(215); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(161); - END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(162); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(27); - if (lookahead == '_') ADVANCE(65); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(160); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '=') ADVANCE(155); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(148); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(272); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(272); - if (lookahead == '=') ADVANCE(156); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 228: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(157); - END_STATE(); - case 229: - ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '\'') ADVANCE(181); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(253); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 230: - ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '\'') ADVANCE(181); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 231: - ACCEPT_TOKEN(sym_name); - if (lookahead == '.') ADVANCE(126); - if (lookahead == '_') ADVANCE(268); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(231); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 232: - ACCEPT_TOKEN(sym_name); - if (lookahead == '+' || - lookahead == '-') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 233: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(248); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(252); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 234: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(248); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 235: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(267); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 236: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 237: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 238: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(261); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 239: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(100); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 240: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(193); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 241: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(262); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 242: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(123); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 243: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(239); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 244: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 245: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(120); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 246: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(195); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 247: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 248: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 249: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(258); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 250: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(242); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 251: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(260); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 252: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(238); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 253: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(245); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 254: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(235); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 255: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(265); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 256: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(254); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 257: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(240); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 258: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(241); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 259: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(236); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 260: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(121); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 261: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(122); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 262: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 263: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(243); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 264: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(237); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 265: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(240); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 266: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(247); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 267: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(119); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 268: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(231); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 269: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 270: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(270); - END_STATE(); - case 271: - ACCEPT_TOKEN(sym_comment); - END_STATE(); - case 272: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '?') ADVANCE(2); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(272); - END_STATE(); - case 273: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '[') ADVANCE(171); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '?') ADVANCE(272); - END_STATE(); - case 274: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '?' && - lookahead != '[') ADVANCE(272); - END_STATE(); - case 275: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '?') ADVANCE(189); - if (lookahead == '?') ADVANCE(182); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(190); - 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 == 'E') ADVANCE(3); - if (lookahead == 'F') ADVANCE(4); - if (lookahead == 'I') ADVANCE(5); - if (lookahead == 'M') ADVANCE(6); - if (lookahead == 'N') ADVANCE(7); - if (lookahead == 'P') ADVANCE(8); - if (lookahead == 'S') ADVANCE(9); - if (lookahead == 'T') ADVANCE(10); - if (lookahead == 'U') ADVANCE(11); - if (lookahead == 'V') ADVANCE(12); - if (lookahead == 'a') ADVANCE(13); - if (lookahead == 'b') ADVANCE(14); - if (lookahead == 'e') ADVANCE(15); - if (lookahead == 'f') ADVANCE(16); - if (lookahead == 'i') ADVANCE(17); - if (lookahead == 'm') ADVANCE(18); - if (lookahead == 'n') ADVANCE(19); - if (lookahead == 'p') ADVANCE(20); - if (lookahead == 's') ADVANCE(21); - if (lookahead == 't') ADVANCE(22); - if (lookahead == 'u') ADVANCE(23); - if (lookahead == 'v') ADVANCE(24); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(25); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(26); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(27); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(28); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(29); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(30); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(31); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(32); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(33); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) 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: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(40); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(41); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(42); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(43); - END_STATE(); - case 4: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(44); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(45); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(46); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(47); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(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(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 == 'W' || - lookahead == 'w') ADVANCE(57); - END_STATE(); - case 10: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(58); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(59); - END_STATE(); - case 11: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(60); - END_STATE(); - case 12: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(61); - END_STATE(); - case 13: - if (lookahead == 'r') ADVANCE(62); - 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(63); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(37); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(39); - END_STATE(); - case 15: - if (lookahead == 'N') ADVANCE(42); - if (lookahead == 'n') ADVANCE(64); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(40); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(41); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(43); - END_STATE(); - case 16: - if (lookahead == 'a') ADVANCE(65); - if (lookahead == 'l') ADVANCE(66); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(44); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(45); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(46); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(47); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(48); - END_STATE(); - case 17: - if (lookahead == 'N') ADVANCE(51); - if (lookahead == 'n') ADVANCE(67); - if (lookahead == 't') ADVANCE(68); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(49); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(50); - END_STATE(); - case 18: - if (lookahead == 'i') ADVANCE(69); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(52); - END_STATE(); - case 19: - if (lookahead == 'u') ADVANCE(70); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(53); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(54); - END_STATE(); - case 20: - if (lookahead == 'a') ADVANCE(71); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(55); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(56); - END_STATE(); - case 21: - if (lookahead == 'e') ADVANCE(72); - if (lookahead == 't') ADVANCE(73); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(57); - END_STATE(); - case 22: - if (lookahead == 'i') ADVANCE(74); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(58); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(59); - END_STATE(); - case 23: - if (lookahead == 'n') ADVANCE(75); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(60); - END_STATE(); - case 24: - if (lookahead == 'o') ADVANCE(76); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(61); - END_STATE(); - case 25: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(77); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(78); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(79); - END_STATE(); - case 26: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(80); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(81); - END_STATE(); - case 27: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(82); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(83); - END_STATE(); - case 28: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(84); - END_STATE(); - case 29: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(85); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(86); - END_STATE(); - case 30: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(87); - END_STATE(); - case 31: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(88); - END_STATE(); - case 32: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(89); - END_STATE(); - case 33: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(90); - END_STATE(); - case 34: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(91); - END_STATE(); - case 35: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(92); - END_STATE(); - case 36: - ACCEPT_TOKEN(aux_sym_namespace_aliasing_clause_token1); - END_STATE(); - case 37: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(93); - END_STATE(); - case 38: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(94); - END_STATE(); - case 39: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(95); - END_STATE(); - case 40: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(96); - END_STATE(); - case 41: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(97); - END_STATE(); - case 42: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(98); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(99); - END_STATE(); - case 43: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(100); - END_STATE(); - case 44: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(101); - END_STATE(); - case 45: - ACCEPT_TOKEN(aux_sym_arrow_function_token1); - END_STATE(); - case 46: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(102); - END_STATE(); - case 47: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(103); - END_STATE(); - case 48: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(104); - END_STATE(); - case 49: - ACCEPT_TOKEN(aux_sym_if_statement_token1); - END_STATE(); - case 50: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(105); - END_STATE(); - case 51: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(106); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(107); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(108); - END_STATE(); - case 52: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(109); - END_STATE(); - case 53: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(110); - END_STATE(); - case 54: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(111); - END_STATE(); - case 55: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(112); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(113); - END_STATE(); - case 56: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(114); - END_STATE(); - case 57: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(115); - END_STATE(); - case 58: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(116); - END_STATE(); - case 59: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(117); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(118); - END_STATE(); - case 60: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(119); - END_STATE(); - case 61: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(120); - END_STATE(); - case 62: - if (lookahead == 'r') ADVANCE(121); - END_STATE(); - case 63: - if (lookahead == 'O') ADVANCE(94); - if (lookahead == 'o') ADVANCE(122); - END_STATE(); - case 64: - if (lookahead == 'c') ADVANCE(123); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(98); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(99); - END_STATE(); - case 65: - if (lookahead == 'l') ADVANCE(124); - END_STATE(); - case 66: - if (lookahead == 'o') ADVANCE(125); - END_STATE(); - case 67: - if (lookahead == 'T') ADVANCE(108); - if (lookahead == 't') ADVANCE(126); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(106); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(107); - END_STATE(); - case 68: - if (lookahead == 'e') ADVANCE(127); - END_STATE(); - case 69: - if (lookahead == 'x') ADVANCE(128); - END_STATE(); - case 70: - if (lookahead == 'l') ADVANCE(129); - END_STATE(); - case 71: - if (lookahead == 'r') ADVANCE(130); - END_STATE(); - case 72: - if (lookahead == 'l') ADVANCE(131); - END_STATE(); - case 73: - if (lookahead == 'a') ADVANCE(132); - if (lookahead == 'r') ADVANCE(133); - END_STATE(); - case 74: - if (lookahead == 'c') ADVANCE(134); - END_STATE(); - case 75: - if (lookahead == 's') ADVANCE(135); - END_STATE(); - case 76: - if (lookahead == 'i') ADVANCE(136); - END_STATE(); - case 77: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(137); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(138); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(139); - END_STATE(); - case 78: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(140); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(141); - END_STATE(); - case 79: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(142); - END_STATE(); - case 80: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(143); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(144); - END_STATE(); - case 81: - ACCEPT_TOKEN(aux_sym_do_statement_token1); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(145); - END_STATE(); - case 82: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(146); - END_STATE(); - case 83: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(147); - END_STATE(); - case 84: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(148); - END_STATE(); - case 85: - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(149); - END_STATE(); - case 86: - ACCEPT_TOKEN(aux_sym_binary_expression_token3); - END_STATE(); - case 87: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(150); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(151); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(152); - END_STATE(); - case 88: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(153); - END_STATE(); - case 89: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(154); - END_STATE(); - case 90: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(155); - END_STATE(); - case 91: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(156); - END_STATE(); - case 92: - ACCEPT_TOKEN(aux_sym_binary_expression_token2); - END_STATE(); - case 93: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(157); - END_STATE(); - case 94: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(158); - END_STATE(); - case 95: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(159); - END_STATE(); - case 96: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(160); - END_STATE(); - case 97: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(161); - END_STATE(); - case 98: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(162); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(164); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(165); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(166); - END_STATE(); - case 99: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(167); - END_STATE(); - case 100: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(168); - END_STATE(); - case 101: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(169); - END_STATE(); - case 102: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(170); - END_STATE(); - case 103: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(171); - END_STATE(); - case 104: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(172); - END_STATE(); - case 105: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(173); - END_STATE(); - case 106: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(174); - END_STATE(); - case 107: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(175); - END_STATE(); - case 108: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(176); - END_STATE(); - case 109: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(177); - END_STATE(); - case 110: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(178); - END_STATE(); - case 111: - ACCEPT_TOKEN(aux_sym_object_creation_expression_token1); - END_STATE(); - case 112: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(179); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(180); - END_STATE(); - case 113: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(181); - END_STATE(); - case 114: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(182); - END_STATE(); - case 115: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(183); - END_STATE(); - case 116: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(184); - END_STATE(); - case 117: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(185); - END_STATE(); - case 118: - ACCEPT_TOKEN(aux_sym_try_statement_token1); - END_STATE(); - case 119: - ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token1); - END_STATE(); - case 120: - ACCEPT_TOKEN(sym_var_modifier); - END_STATE(); - case 121: - if (lookahead == 'a') ADVANCE(186); - END_STATE(); - case 122: - if (lookahead == 'L') ADVANCE(158); - if (lookahead == 'l') ADVANCE(187); - END_STATE(); - case 123: - if (lookahead == 'o') ADVANCE(188); - END_STATE(); - case 124: - if (lookahead == 's') ADVANCE(189); - END_STATE(); - case 125: - if (lookahead == 'a') ADVANCE(190); - END_STATE(); - case 126: - ACCEPT_TOKEN(anon_sym_int); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(176); - END_STATE(); - case 127: - if (lookahead == 'r') ADVANCE(191); - END_STATE(); - case 128: - if (lookahead == 'e') ADVANCE(192); - END_STATE(); - case 129: - if (lookahead == 'l') ADVANCE(193); - END_STATE(); - case 130: - if (lookahead == 'e') ADVANCE(194); - END_STATE(); - case 131: - if (lookahead == 'f') ADVANCE(195); - END_STATE(); - case 132: - if (lookahead == 't') ADVANCE(196); - END_STATE(); - case 133: - if (lookahead == 'i') ADVANCE(197); - END_STATE(); - case 134: - if (lookahead == 'k') ADVANCE(198); - END_STATE(); - case 135: - if (lookahead == 'e') ADVANCE(199); - END_STATE(); - case 136: - if (lookahead == 'd') ADVANCE(200); - END_STATE(); - case 137: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(201); - END_STATE(); - case 138: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(202); - END_STATE(); - case 139: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(203); - END_STATE(); - case 140: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(204); - END_STATE(); - case 141: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(205); - END_STATE(); - case 142: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(206); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(207); - END_STATE(); - case 143: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(208); - END_STATE(); - case 144: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(209); - END_STATE(); - case 145: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(210); - END_STATE(); - case 146: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(211); - END_STATE(); - case 147: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(212); - END_STATE(); - case 148: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(213); - END_STATE(); - case 149: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(214); - END_STATE(); - case 150: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(215); - END_STATE(); - case 151: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(216); - END_STATE(); - case 152: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(217); - END_STATE(); - case 153: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(218); - END_STATE(); - case 154: - ACCEPT_TOKEN(aux_sym_binary_expression_token4); - END_STATE(); - case 155: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(219); - END_STATE(); - case 156: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(220); - END_STATE(); - case 157: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(221); - END_STATE(); - case 158: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(222); - END_STATE(); - case 159: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(223); - END_STATE(); - case 160: - ACCEPT_TOKEN(aux_sym_echo_statement_token1); - END_STATE(); - case 161: - ACCEPT_TOKEN(aux_sym_else_clause_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(224); - END_STATE(); - case 162: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(225); - END_STATE(); - case 163: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(226); - END_STATE(); - case 164: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(227); - END_STATE(); - case 165: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(228); - END_STATE(); - case 166: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(229); - END_STATE(); - case 167: - ACCEPT_TOKEN(aux_sym_enum_declaration_token1); - END_STATE(); - case 168: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(230); - END_STATE(); - case 169: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(231); - END_STATE(); - case 170: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(232); - END_STATE(); - case 171: - ACCEPT_TOKEN(aux_sym_yield_expression_token2); - END_STATE(); - case 172: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(233); - END_STATE(); - case 173: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(234); - END_STATE(); - case 174: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(235); - END_STATE(); - case 175: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(236); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(237); - END_STATE(); - case 176: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(238); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(239); - END_STATE(); - case 177: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(240); - END_STATE(); - case 178: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(241); - END_STATE(); - case 179: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(242); - END_STATE(); - case 180: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(243); - END_STATE(); - case 181: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(244); - END_STATE(); - case 182: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(245); - END_STATE(); - case 183: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(246); - END_STATE(); - case 184: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(247); - END_STATE(); - case 185: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(248); - END_STATE(); - case 186: - if (lookahead == 'y') ADVANCE(249); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_bool); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(222); - END_STATE(); - case 188: - if (lookahead == 'd') ADVANCE(250); - END_STATE(); - case 189: - if (lookahead == 'e') ADVANCE(251); - END_STATE(); - case 190: - if (lookahead == 't') ADVANCE(252); - END_STATE(); - case 191: - if (lookahead == 'a') ADVANCE(253); - END_STATE(); - case 192: - if (lookahead == 'd') ADVANCE(254); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_null); - END_STATE(); - case 194: - if (lookahead == 'n') ADVANCE(255); - END_STATE(); - case 195: - ACCEPT_TOKEN(anon_sym_self); - END_STATE(); - case 196: - if (lookahead == 'i') ADVANCE(256); - END_STATE(); - case 197: - if (lookahead == 'c') ADVANCE(257); - if (lookahead == 'n') ADVANCE(258); - END_STATE(); - case 198: - if (lookahead == 's') ADVANCE(259); - END_STATE(); - case 199: - if (lookahead == 't') ADVANCE(260); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_void); - END_STATE(); - case 201: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(261); - END_STATE(); - case 202: - ACCEPT_TOKEN(aux_sym_enum_case_token1); - END_STATE(); - case 203: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(262); - END_STATE(); - case 204: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(263); - END_STATE(); - case 205: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(264); - END_STATE(); - case 206: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(265); - END_STATE(); - case 207: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(266); - END_STATE(); - case 208: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(267); - END_STATE(); - case 209: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(268); - END_STATE(); - case 210: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(269); - END_STATE(); - case 211: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(270); - END_STATE(); - case 212: - ACCEPT_TOKEN(aux_sym_goto_statement_token1); - END_STATE(); - case 213: - ACCEPT_TOKEN(aux_sym__list_destructing_token1); - END_STATE(); - case 214: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(271); - END_STATE(); - case 215: - ACCEPT_TOKEN(aux_sym_cast_type_token10); - END_STATE(); - case 216: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(272); - END_STATE(); - case 217: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(273); - END_STATE(); - case 218: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(274); - END_STATE(); - case 219: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(275); - END_STATE(); - case 220: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(276); - END_STATE(); - case 221: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(277); - END_STATE(); - case 222: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(278); - END_STATE(); - case 223: - ACCEPT_TOKEN(aux_sym_break_statement_token1); - END_STATE(); - case 224: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(279); - END_STATE(); - case 225: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(280); - END_STATE(); - case 226: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(281); - END_STATE(); - case 227: - ACCEPT_TOKEN(aux_sym_if_statement_token2); - END_STATE(); - case 228: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(282); - END_STATE(); - case 229: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(283); - END_STATE(); - case 230: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(284); - END_STATE(); - case 231: - ACCEPT_TOKEN(aux_sym_final_modifier_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(285); - END_STATE(); - case 232: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(286); - END_STATE(); - case 233: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(287); - END_STATE(); - case 234: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(288); - END_STATE(); - case 235: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(289); - END_STATE(); - case 236: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(290); - END_STATE(); - case 237: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(291); - END_STATE(); - case 238: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(292); - END_STATE(); - case 239: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(293); - END_STATE(); - case 240: - ACCEPT_TOKEN(aux_sym_match_expression_token1); - END_STATE(); - case 241: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(294); - END_STATE(); - case 242: - ACCEPT_TOKEN(aux_sym_print_intrinsic_token1); - END_STATE(); - case 243: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(295); - END_STATE(); - case 244: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(296); - END_STATE(); - case 245: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(297); - END_STATE(); - case 246: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(298); - END_STATE(); - case 247: - ACCEPT_TOKEN(aux_sym_throw_expression_token1); - END_STATE(); - case 248: - ACCEPT_TOKEN(aux_sym_trait_declaration_token1); - END_STATE(); - case 249: - ACCEPT_TOKEN(anon_sym_array); - END_STATE(); - case 250: - if (lookahead == 'i') ADVANCE(299); - END_STATE(); - case 251: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 252: - ACCEPT_TOKEN(anon_sym_float); - END_STATE(); - case 253: - if (lookahead == 'b') ADVANCE(300); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_mixed); - END_STATE(); - case 255: - if (lookahead == 't') ADVANCE(301); - END_STATE(); - case 256: - if (lookahead == 'c') ADVANCE(302); - END_STATE(); - case 257: - if (lookahead == 't') ADVANCE(303); - END_STATE(); - case 258: - if (lookahead == 'g') ADVANCE(304); - END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_ticks); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_unset); - END_STATE(); - case 261: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(305); - END_STATE(); - case 262: - ACCEPT_TOKEN(aux_sym_catch_clause_token1); - END_STATE(); - case 263: - ACCEPT_TOKEN(aux_sym_class_declaration_token1); - END_STATE(); - case 264: - ACCEPT_TOKEN(aux_sym_clone_expression_token1); - END_STATE(); - case 265: - ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token3); - END_STATE(); - case 266: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(306); - END_STATE(); - case 267: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(307); - END_STATE(); - case 268: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(308); - END_STATE(); - case 269: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(309); - END_STATE(); - case 270: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(310); - END_STATE(); - case 271: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(311); - END_STATE(); - case 272: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(312); - END_STATE(); - case 273: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(313); - END_STATE(); - case 274: - ACCEPT_TOKEN(aux_sym_while_statement_token1); - END_STATE(); - case 275: - ACCEPT_TOKEN(aux_sym_yield_expression_token1); - END_STATE(); - case 276: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(314); - END_STATE(); - case 277: - ACCEPT_TOKEN(aux_sym_cast_type_token2); - END_STATE(); - case 278: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(315); - END_STATE(); - case 279: - ACCEPT_TOKEN(aux_sym_else_if_clause_token1); - END_STATE(); - case 280: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(316); - END_STATE(); - case 281: - ACCEPT_TOKEN(aux_sym_for_statement_token2); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(317); - END_STATE(); - case 282: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(318); - END_STATE(); - case 283: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(319); - END_STATE(); - case 284: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(320); - END_STATE(); - case 285: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(321); - END_STATE(); - case 286: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(322); - END_STATE(); - case 287: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(323); - END_STATE(); - case 288: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(324); - END_STATE(); - case 289: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(325); - END_STATE(); - case 290: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(326); - END_STATE(); - case 291: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(327); - END_STATE(); - case 292: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(328); - END_STATE(); - case 293: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(329); - END_STATE(); - case 294: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(330); - END_STATE(); - case 295: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(331); - END_STATE(); - case 296: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(332); - END_STATE(); - case 297: - ACCEPT_TOKEN(aux_sym_visibility_modifier_token1); - END_STATE(); - case 298: - ACCEPT_TOKEN(aux_sym_switch_statement_token1); - END_STATE(); - case 299: - if (lookahead == 'n') ADVANCE(333); - END_STATE(); - case 300: - if (lookahead == 'l') ADVANCE(334); - END_STATE(); - case 301: - ACCEPT_TOKEN(anon_sym_parent); - END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_static); - END_STATE(); - case 303: - if (lookahead == '_') ADVANCE(335); - END_STATE(); - case 304: - ACCEPT_TOKEN(anon_sym_string); - END_STATE(); - case 305: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(336); - END_STATE(); - case 306: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(337); - END_STATE(); - case 307: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(338); - END_STATE(); - case 308: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(339); - END_STATE(); - case 309: - ACCEPT_TOKEN(aux_sym_cast_type_token5); - END_STATE(); - case 310: - ACCEPT_TOKEN(aux_sym_global_declaration_token1); - END_STATE(); - case 311: - ACCEPT_TOKEN(aux_sym_cast_type_token9); - END_STATE(); - case 312: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(340); - END_STATE(); - case 313: - ACCEPT_TOKEN(aux_sym_return_statement_token1); - END_STATE(); - case 314: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(341); - END_STATE(); - case 315: - ACCEPT_TOKEN(aux_sym_cast_type_token4); - END_STATE(); - case 316: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(342); - END_STATE(); - case 317: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(343); - END_STATE(); - case 318: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(344); - END_STATE(); - case 319: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(345); - END_STATE(); - case 320: - ACCEPT_TOKEN(aux_sym_base_clause_token1); - END_STATE(); - case 321: - ACCEPT_TOKEN(aux_sym_finally_clause_token1); - END_STATE(); - case 322: - ACCEPT_TOKEN(aux_sym_foreach_statement_token1); - END_STATE(); - case 323: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(346); - END_STATE(); - case 324: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(347); - END_STATE(); - case 325: - ACCEPT_TOKEN(aux_sym_include_expression_token1); - if (lookahead == '_') ADVANCE(348); - END_STATE(); - case 326: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(349); - END_STATE(); - case 327: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(350); - END_STATE(); - case 328: - ACCEPT_TOKEN(aux_sym_cast_type_token7); - END_STATE(); - case 329: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(351); - END_STATE(); - case 330: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(352); - END_STATE(); - case 331: - ACCEPT_TOKEN(aux_sym_visibility_modifier_token3); - END_STATE(); - case 332: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(353); - END_STATE(); - case 333: - if (lookahead == 'g') ADVANCE(354); - END_STATE(); - case 334: - if (lookahead == 'e') ADVANCE(355); - END_STATE(); - case 335: - if (lookahead == 't') ADVANCE(356); - END_STATE(); - case 336: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(357); - END_STATE(); - case 337: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(358); - END_STATE(); - case 338: - ACCEPT_TOKEN(aux_sym_declare_statement_token1); - END_STATE(); - case 339: - ACCEPT_TOKEN(aux_sym_match_default_expression_token1); - END_STATE(); - case 340: - ACCEPT_TOKEN(aux_sym_require_expression_token1); - if (lookahead == '_') ADVANCE(359); - END_STATE(); - case 341: - ACCEPT_TOKEN(aux_sym_abstract_modifier_token1); - END_STATE(); - case 342: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(360); - END_STATE(); - case 343: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(361); - END_STATE(); - case 344: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(362); - END_STATE(); - case 345: - ACCEPT_TOKEN(aux_sym_while_statement_token2); - END_STATE(); - case 346: - ACCEPT_TOKEN(aux_sym_namespace_use_declaration_token2); - END_STATE(); - case 347: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(363); - END_STATE(); - case 348: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(364); - END_STATE(); - case 349: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(365); - END_STATE(); - case 350: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(366); - END_STATE(); - case 351: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(367); - END_STATE(); - case 352: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(368); - END_STATE(); - case 353: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(369); - END_STATE(); - case 354: - ACCEPT_TOKEN(anon_sym_encoding); - END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym_iterable); - END_STATE(); - case 356: - if (lookahead == 'y') ADVANCE(370); - END_STATE(); - case 357: - ACCEPT_TOKEN(aux_sym_primitive_type_token1); - END_STATE(); - case 358: - ACCEPT_TOKEN(aux_sym_continue_statement_token1); - END_STATE(); - case 359: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(371); - END_STATE(); - case 360: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(372); - END_STATE(); - case 361: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(373); - END_STATE(); - case 362: - ACCEPT_TOKEN(aux_sym_switch_block_token1); - END_STATE(); - case 363: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(374); - END_STATE(); - case 364: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(375); - END_STATE(); - case 365: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(376); - END_STATE(); - case 366: - ACCEPT_TOKEN(aux_sym_use_instead_of_clause_token1); - END_STATE(); - case 367: - ACCEPT_TOKEN(aux_sym_interface_declaration_token1); - END_STATE(); - case 368: - ACCEPT_TOKEN(aux_sym_namespace_definition_token1); - END_STATE(); - case 369: - ACCEPT_TOKEN(aux_sym_visibility_modifier_token2); - END_STATE(); - case 370: - if (lookahead == 'p') ADVANCE(377); - END_STATE(); - case 371: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(378); - END_STATE(); - case 372: - ACCEPT_TOKEN(aux_sym_declare_statement_token2); - END_STATE(); - case 373: - ACCEPT_TOKEN(aux_sym_foreach_statement_token2); - END_STATE(); - case 374: - ACCEPT_TOKEN(aux_sym_class_interface_clause_token1); - END_STATE(); - case 375: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(379); - END_STATE(); - case 376: - ACCEPT_TOKEN(aux_sym_binary_expression_token1); - END_STATE(); - case 377: - if (lookahead == 'e') ADVANCE(380); - END_STATE(); - case 378: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(381); - END_STATE(); - case 379: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(382); - END_STATE(); - case 380: - if (lookahead == 's') ADVANCE(383); - END_STATE(); - case 381: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(384); - END_STATE(); - case 382: - ACCEPT_TOKEN(aux_sym_include_once_expression_token1); - END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym_strict_types); - END_STATE(); - case 384: - ACCEPT_TOKEN(aux_sym_require_once_expression_token1); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 79}, - [2] = {.lex_state = 76, .external_lex_state = 2}, - [3] = {.lex_state = 76, .external_lex_state = 2}, - [4] = {.lex_state = 76, .external_lex_state = 2}, - [5] = {.lex_state = 76, .external_lex_state = 2}, - [6] = {.lex_state = 76, .external_lex_state = 2}, - [7] = {.lex_state = 76, .external_lex_state = 2}, - [8] = {.lex_state = 76, .external_lex_state = 2}, - [9] = {.lex_state = 76, .external_lex_state = 2}, - [10] = {.lex_state = 76, .external_lex_state = 2}, - [11] = {.lex_state = 76, .external_lex_state = 2}, - [12] = {.lex_state = 76, .external_lex_state = 3}, - [13] = {.lex_state = 76, .external_lex_state = 3}, - [14] = {.lex_state = 76, .external_lex_state = 3}, - [15] = {.lex_state = 76, .external_lex_state = 3}, - [16] = {.lex_state = 76, .external_lex_state = 2}, - [17] = {.lex_state = 76, .external_lex_state = 2}, - [18] = {.lex_state = 76, .external_lex_state = 2}, - [19] = {.lex_state = 76, .external_lex_state = 2}, - [20] = {.lex_state = 76, .external_lex_state = 2}, - [21] = {.lex_state = 76, .external_lex_state = 3}, - [22] = {.lex_state = 76, .external_lex_state = 2}, - [23] = {.lex_state = 76, .external_lex_state = 3}, - [24] = {.lex_state = 76, .external_lex_state = 3}, - [25] = {.lex_state = 76, .external_lex_state = 3}, - [26] = {.lex_state = 76, .external_lex_state = 2}, - [27] = {.lex_state = 76, .external_lex_state = 2}, - [28] = {.lex_state = 76, .external_lex_state = 2}, - [29] = {.lex_state = 76, .external_lex_state = 3}, - [30] = {.lex_state = 76, .external_lex_state = 2}, - [31] = {.lex_state = 76, .external_lex_state = 2}, - [32] = {.lex_state = 76, .external_lex_state = 3}, - [33] = {.lex_state = 76, .external_lex_state = 3}, - [34] = {.lex_state = 76, .external_lex_state = 3}, - [35] = {.lex_state = 76, .external_lex_state = 2}, - [36] = {.lex_state = 76, .external_lex_state = 2}, - [37] = {.lex_state = 76, .external_lex_state = 3}, - [38] = {.lex_state = 76, .external_lex_state = 2}, - [39] = {.lex_state = 76, .external_lex_state = 2}, - [40] = {.lex_state = 76, .external_lex_state = 3}, - [41] = {.lex_state = 76, .external_lex_state = 2}, - [42] = {.lex_state = 76, .external_lex_state = 2}, - [43] = {.lex_state = 76, .external_lex_state = 2}, - [44] = {.lex_state = 76, .external_lex_state = 2}, - [45] = {.lex_state = 76, .external_lex_state = 2}, - [46] = {.lex_state = 76, .external_lex_state = 3}, - [47] = {.lex_state = 76, .external_lex_state = 2}, - [48] = {.lex_state = 76, .external_lex_state = 2}, - [49] = {.lex_state = 76, .external_lex_state = 2}, - [50] = {.lex_state = 76, .external_lex_state = 3}, - [51] = {.lex_state = 76, .external_lex_state = 3}, - [52] = {.lex_state = 76, .external_lex_state = 2}, - [53] = {.lex_state = 76, .external_lex_state = 2}, - [54] = {.lex_state = 76, .external_lex_state = 2}, - [55] = {.lex_state = 76, .external_lex_state = 2}, - [56] = {.lex_state = 76, .external_lex_state = 2}, - [57] = {.lex_state = 76, .external_lex_state = 3}, - [58] = {.lex_state = 76, .external_lex_state = 2}, - [59] = {.lex_state = 76, .external_lex_state = 2}, - [60] = {.lex_state = 76, .external_lex_state = 2}, - [61] = {.lex_state = 76, .external_lex_state = 2}, - [62] = {.lex_state = 76, .external_lex_state = 3}, - [63] = {.lex_state = 76, .external_lex_state = 2}, - [64] = {.lex_state = 76, .external_lex_state = 2}, - [65] = {.lex_state = 76, .external_lex_state = 2}, - [66] = {.lex_state = 76, .external_lex_state = 2}, - [67] = {.lex_state = 76, .external_lex_state = 2}, - [68] = {.lex_state = 76, .external_lex_state = 2}, - [69] = {.lex_state = 76, .external_lex_state = 3}, - [70] = {.lex_state = 76, .external_lex_state = 2}, - [71] = {.lex_state = 76, .external_lex_state = 2}, - [72] = {.lex_state = 76, .external_lex_state = 3}, - [73] = {.lex_state = 76, .external_lex_state = 2}, - [74] = {.lex_state = 76, .external_lex_state = 3}, - [75] = {.lex_state = 76, .external_lex_state = 3}, - [76] = {.lex_state = 76, .external_lex_state = 2}, - [77] = {.lex_state = 76, .external_lex_state = 3}, - [78] = {.lex_state = 76, .external_lex_state = 2}, - [79] = {.lex_state = 76, .external_lex_state = 2}, - [80] = {.lex_state = 76, .external_lex_state = 2}, - [81] = {.lex_state = 76, .external_lex_state = 2}, - [82] = {.lex_state = 76, .external_lex_state = 2}, - [83] = {.lex_state = 76, .external_lex_state = 2}, - [84] = {.lex_state = 76, .external_lex_state = 2}, - [85] = {.lex_state = 76, .external_lex_state = 2}, - [86] = {.lex_state = 3, .external_lex_state = 2}, - [87] = {.lex_state = 3, .external_lex_state = 2}, - [88] = {.lex_state = 3, .external_lex_state = 3}, - [89] = {.lex_state = 3, .external_lex_state = 2}, - [90] = {.lex_state = 5, .external_lex_state = 2}, - [91] = {.lex_state = 5, .external_lex_state = 2}, - [92] = {.lex_state = 5, .external_lex_state = 2}, - [93] = {.lex_state = 5, .external_lex_state = 2}, - [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 5, .external_lex_state = 2}, - [97] = {.lex_state = 5, .external_lex_state = 2}, - [98] = {.lex_state = 5, .external_lex_state = 2}, - [99] = {.lex_state = 5, .external_lex_state = 2}, - [100] = {.lex_state = 5, .external_lex_state = 2}, - [101] = {.lex_state = 4, .external_lex_state = 2}, - [102] = {.lex_state = 4, .external_lex_state = 2}, - [103] = {.lex_state = 4, .external_lex_state = 2}, - [104] = {.lex_state = 4, .external_lex_state = 2}, - [105] = {.lex_state = 4, .external_lex_state = 2}, - [106] = {.lex_state = 4, .external_lex_state = 2}, - [107] = {.lex_state = 4, .external_lex_state = 2}, - [108] = {.lex_state = 4, .external_lex_state = 2}, - [109] = {.lex_state = 4, .external_lex_state = 2}, - [110] = {.lex_state = 4, .external_lex_state = 2}, - [111] = {.lex_state = 4, .external_lex_state = 2}, - [112] = {.lex_state = 4, .external_lex_state = 2}, - [113] = {.lex_state = 4, .external_lex_state = 2}, - [114] = {.lex_state = 4, .external_lex_state = 2}, - [115] = {.lex_state = 4, .external_lex_state = 2}, - [116] = {.lex_state = 4, .external_lex_state = 2}, - [117] = {.lex_state = 4, .external_lex_state = 2}, - [118] = {.lex_state = 4, .external_lex_state = 2}, - [119] = {.lex_state = 4, .external_lex_state = 2}, - [120] = {.lex_state = 4, .external_lex_state = 2}, - [121] = {.lex_state = 4, .external_lex_state = 2}, - [122] = {.lex_state = 4, .external_lex_state = 2}, - [123] = {.lex_state = 4, .external_lex_state = 2}, - [124] = {.lex_state = 4, .external_lex_state = 2}, - [125] = {.lex_state = 4, .external_lex_state = 2}, - [126] = {.lex_state = 4, .external_lex_state = 2}, - [127] = {.lex_state = 4, .external_lex_state = 2}, - [128] = {.lex_state = 4, .external_lex_state = 2}, - [129] = {.lex_state = 4, .external_lex_state = 2}, - [130] = {.lex_state = 4, .external_lex_state = 2}, - [131] = {.lex_state = 4, .external_lex_state = 2}, - [132] = {.lex_state = 4, .external_lex_state = 2}, - [133] = {.lex_state = 4, .external_lex_state = 2}, - [134] = {.lex_state = 4, .external_lex_state = 2}, - [135] = {.lex_state = 4, .external_lex_state = 2}, - [136] = {.lex_state = 76, .external_lex_state = 2}, - [137] = {.lex_state = 76, .external_lex_state = 2}, - [138] = {.lex_state = 76, .external_lex_state = 2}, - [139] = {.lex_state = 76, .external_lex_state = 2}, - [140] = {.lex_state = 4, .external_lex_state = 2}, - [141] = {.lex_state = 76, .external_lex_state = 2}, - [142] = {.lex_state = 4, .external_lex_state = 2}, - [143] = {.lex_state = 76, .external_lex_state = 2}, - [144] = {.lex_state = 76, .external_lex_state = 2}, - [145] = {.lex_state = 76, .external_lex_state = 2}, - [146] = {.lex_state = 4, .external_lex_state = 2}, - [147] = {.lex_state = 76, .external_lex_state = 2}, - [148] = {.lex_state = 4, .external_lex_state = 2}, - [149] = {.lex_state = 76, .external_lex_state = 2}, - [150] = {.lex_state = 76, .external_lex_state = 2}, - [151] = {.lex_state = 76, .external_lex_state = 2}, - [152] = {.lex_state = 76, .external_lex_state = 2}, - [153] = {.lex_state = 76, .external_lex_state = 2}, - [154] = {.lex_state = 76, .external_lex_state = 2}, - [155] = {.lex_state = 76, .external_lex_state = 2}, - [156] = {.lex_state = 76, .external_lex_state = 2}, - [157] = {.lex_state = 76, .external_lex_state = 2}, - [158] = {.lex_state = 76, .external_lex_state = 2}, - [159] = {.lex_state = 76, .external_lex_state = 2}, - [160] = {.lex_state = 76, .external_lex_state = 2}, - [161] = {.lex_state = 76, .external_lex_state = 2}, - [162] = {.lex_state = 76, .external_lex_state = 2}, - [163] = {.lex_state = 76, .external_lex_state = 2}, - [164] = {.lex_state = 76, .external_lex_state = 2}, - [165] = {.lex_state = 76, .external_lex_state = 2}, - [166] = {.lex_state = 76, .external_lex_state = 2}, - [167] = {.lex_state = 76, .external_lex_state = 2}, - [168] = {.lex_state = 76, .external_lex_state = 2}, - [169] = {.lex_state = 76, .external_lex_state = 2}, - [170] = {.lex_state = 76, .external_lex_state = 2}, - [171] = {.lex_state = 76, .external_lex_state = 2}, - [172] = {.lex_state = 76, .external_lex_state = 2}, - [173] = {.lex_state = 76, .external_lex_state = 2}, - [174] = {.lex_state = 76, .external_lex_state = 2}, - [175] = {.lex_state = 76, .external_lex_state = 2}, - [176] = {.lex_state = 76, .external_lex_state = 2}, - [177] = {.lex_state = 76, .external_lex_state = 2}, - [178] = {.lex_state = 76, .external_lex_state = 2}, - [179] = {.lex_state = 76, .external_lex_state = 2}, - [180] = {.lex_state = 76, .external_lex_state = 2}, - [181] = {.lex_state = 76, .external_lex_state = 3}, - [182] = {.lex_state = 76, .external_lex_state = 2}, - [183] = {.lex_state = 76, .external_lex_state = 3}, - [184] = {.lex_state = 4, .external_lex_state = 2}, - [185] = {.lex_state = 76, .external_lex_state = 3}, - [186] = {.lex_state = 76, .external_lex_state = 2}, - [187] = {.lex_state = 4, .external_lex_state = 2}, - [188] = {.lex_state = 76, .external_lex_state = 3}, - [189] = {.lex_state = 76, .external_lex_state = 3}, - [190] = {.lex_state = 76, .external_lex_state = 2}, - [191] = {.lex_state = 76, .external_lex_state = 2}, - [192] = {.lex_state = 76, .external_lex_state = 2}, - [193] = {.lex_state = 76, .external_lex_state = 2}, - [194] = {.lex_state = 76, .external_lex_state = 2}, - [195] = {.lex_state = 76, .external_lex_state = 2}, - [196] = {.lex_state = 76, .external_lex_state = 2}, - [197] = {.lex_state = 76, .external_lex_state = 3}, - [198] = {.lex_state = 76, .external_lex_state = 2}, - [199] = {.lex_state = 76, .external_lex_state = 2}, - [200] = {.lex_state = 76, .external_lex_state = 2}, - [201] = {.lex_state = 76, .external_lex_state = 2}, - [202] = {.lex_state = 76, .external_lex_state = 2}, - [203] = {.lex_state = 76, .external_lex_state = 2}, - [204] = {.lex_state = 76, .external_lex_state = 2}, - [205] = {.lex_state = 76, .external_lex_state = 2}, - [206] = {.lex_state = 76, .external_lex_state = 2}, - [207] = {.lex_state = 76, .external_lex_state = 2}, - [208] = {.lex_state = 76, .external_lex_state = 2}, - [209] = {.lex_state = 76, .external_lex_state = 2}, - [210] = {.lex_state = 76, .external_lex_state = 2}, - [211] = {.lex_state = 76, .external_lex_state = 2}, - [212] = {.lex_state = 76, .external_lex_state = 2}, - [213] = {.lex_state = 76, .external_lex_state = 2}, - [214] = {.lex_state = 76, .external_lex_state = 2}, - [215] = {.lex_state = 76, .external_lex_state = 2}, - [216] = {.lex_state = 76, .external_lex_state = 2}, - [217] = {.lex_state = 76, .external_lex_state = 2}, - [218] = {.lex_state = 76, .external_lex_state = 2}, - [219] = {.lex_state = 76, .external_lex_state = 2}, - [220] = {.lex_state = 76, .external_lex_state = 2}, - [221] = {.lex_state = 76, .external_lex_state = 2}, - [222] = {.lex_state = 76, .external_lex_state = 2}, - [223] = {.lex_state = 76, .external_lex_state = 2}, - [224] = {.lex_state = 76, .external_lex_state = 2}, - [225] = {.lex_state = 76, .external_lex_state = 2}, - [226] = {.lex_state = 76, .external_lex_state = 2}, - [227] = {.lex_state = 76, .external_lex_state = 2}, - [228] = {.lex_state = 76, .external_lex_state = 2}, - [229] = {.lex_state = 76, .external_lex_state = 2}, - [230] = {.lex_state = 76, .external_lex_state = 2}, - [231] = {.lex_state = 76, .external_lex_state = 2}, - [232] = {.lex_state = 76, .external_lex_state = 2}, - [233] = {.lex_state = 76, .external_lex_state = 2}, - [234] = {.lex_state = 76, .external_lex_state = 2}, - [235] = {.lex_state = 76, .external_lex_state = 2}, - [236] = {.lex_state = 76, .external_lex_state = 2}, - [237] = {.lex_state = 76, .external_lex_state = 2}, - [238] = {.lex_state = 76, .external_lex_state = 2}, - [239] = {.lex_state = 76, .external_lex_state = 2}, - [240] = {.lex_state = 76, .external_lex_state = 2}, - [241] = {.lex_state = 76, .external_lex_state = 2}, - [242] = {.lex_state = 76, .external_lex_state = 2}, - [243] = {.lex_state = 76, .external_lex_state = 2}, - [244] = {.lex_state = 76, .external_lex_state = 2}, - [245] = {.lex_state = 76, .external_lex_state = 2}, - [246] = {.lex_state = 76, .external_lex_state = 2}, - [247] = {.lex_state = 76, .external_lex_state = 2}, - [248] = {.lex_state = 76, .external_lex_state = 2}, - [249] = {.lex_state = 76, .external_lex_state = 2}, - [250] = {.lex_state = 76, .external_lex_state = 2}, - [251] = {.lex_state = 76, .external_lex_state = 2}, - [252] = {.lex_state = 76, .external_lex_state = 2}, - [253] = {.lex_state = 76, .external_lex_state = 2}, - [254] = {.lex_state = 76, .external_lex_state = 2}, - [255] = {.lex_state = 76, .external_lex_state = 2}, - [256] = {.lex_state = 76, .external_lex_state = 2}, - [257] = {.lex_state = 76, .external_lex_state = 2}, - [258] = {.lex_state = 76, .external_lex_state = 2}, - [259] = {.lex_state = 76, .external_lex_state = 2}, - [260] = {.lex_state = 76, .external_lex_state = 2}, - [261] = {.lex_state = 76, .external_lex_state = 2}, - [262] = {.lex_state = 76, .external_lex_state = 2}, - [263] = {.lex_state = 76, .external_lex_state = 2}, - [264] = {.lex_state = 76, .external_lex_state = 2}, - [265] = {.lex_state = 76, .external_lex_state = 2}, - [266] = {.lex_state = 76, .external_lex_state = 2}, - [267] = {.lex_state = 76, .external_lex_state = 2}, - [268] = {.lex_state = 76, .external_lex_state = 2}, - [269] = {.lex_state = 76, .external_lex_state = 2}, - [270] = {.lex_state = 76, .external_lex_state = 2}, - [271] = {.lex_state = 76, .external_lex_state = 2}, - [272] = {.lex_state = 76, .external_lex_state = 2}, - [273] = {.lex_state = 76, .external_lex_state = 2}, - [274] = {.lex_state = 76, .external_lex_state = 2}, - [275] = {.lex_state = 76, .external_lex_state = 2}, - [276] = {.lex_state = 76, .external_lex_state = 2}, - [277] = {.lex_state = 76, .external_lex_state = 2}, - [278] = {.lex_state = 76, .external_lex_state = 2}, - [279] = {.lex_state = 76, .external_lex_state = 2}, - [280] = {.lex_state = 76, .external_lex_state = 2}, - [281] = {.lex_state = 76, .external_lex_state = 2}, - [282] = {.lex_state = 76, .external_lex_state = 2}, - [283] = {.lex_state = 76, .external_lex_state = 2}, - [284] = {.lex_state = 76, .external_lex_state = 2}, - [285] = {.lex_state = 76, .external_lex_state = 2}, - [286] = {.lex_state = 76, .external_lex_state = 2}, - [287] = {.lex_state = 76, .external_lex_state = 2}, - [288] = {.lex_state = 76, .external_lex_state = 2}, - [289] = {.lex_state = 76, .external_lex_state = 2}, - [290] = {.lex_state = 76, .external_lex_state = 2}, - [291] = {.lex_state = 76, .external_lex_state = 2}, - [292] = {.lex_state = 76, .external_lex_state = 2}, - [293] = {.lex_state = 76, .external_lex_state = 2}, - [294] = {.lex_state = 76, .external_lex_state = 2}, - [295] = {.lex_state = 76, .external_lex_state = 2}, - [296] = {.lex_state = 76, .external_lex_state = 2}, - [297] = {.lex_state = 76, .external_lex_state = 2}, - [298] = {.lex_state = 76, .external_lex_state = 2}, - [299] = {.lex_state = 76, .external_lex_state = 2}, - [300] = {.lex_state = 76, .external_lex_state = 2}, - [301] = {.lex_state = 76, .external_lex_state = 2}, - [302] = {.lex_state = 76, .external_lex_state = 2}, - [303] = {.lex_state = 76, .external_lex_state = 2}, - [304] = {.lex_state = 76, .external_lex_state = 2}, - [305] = {.lex_state = 76, .external_lex_state = 2}, - [306] = {.lex_state = 76, .external_lex_state = 2}, - [307] = {.lex_state = 76, .external_lex_state = 2}, - [308] = {.lex_state = 76, .external_lex_state = 2}, - [309] = {.lex_state = 76, .external_lex_state = 2}, - [310] = {.lex_state = 76, .external_lex_state = 2}, - [311] = {.lex_state = 76, .external_lex_state = 2}, - [312] = {.lex_state = 76, .external_lex_state = 2}, - [313] = {.lex_state = 76, .external_lex_state = 2}, - [314] = {.lex_state = 76, .external_lex_state = 2}, - [315] = {.lex_state = 76, .external_lex_state = 2}, - [316] = {.lex_state = 76, .external_lex_state = 2}, - [317] = {.lex_state = 76, .external_lex_state = 2}, - [318] = {.lex_state = 76, .external_lex_state = 2}, - [319] = {.lex_state = 76, .external_lex_state = 2}, - [320] = {.lex_state = 76, .external_lex_state = 2}, - [321] = {.lex_state = 76, .external_lex_state = 2}, - [322] = {.lex_state = 76, .external_lex_state = 2}, - [323] = {.lex_state = 76, .external_lex_state = 2}, - [324] = {.lex_state = 76, .external_lex_state = 2}, - [325] = {.lex_state = 76, .external_lex_state = 2}, - [326] = {.lex_state = 76, .external_lex_state = 2}, - [327] = {.lex_state = 76, .external_lex_state = 2}, - [328] = {.lex_state = 76, .external_lex_state = 2}, - [329] = {.lex_state = 76, .external_lex_state = 2}, - [330] = {.lex_state = 76, .external_lex_state = 2}, - [331] = {.lex_state = 76, .external_lex_state = 2}, - [332] = {.lex_state = 76, .external_lex_state = 2}, - [333] = {.lex_state = 76, .external_lex_state = 2}, - [334] = {.lex_state = 76, .external_lex_state = 2}, - [335] = {.lex_state = 76, .external_lex_state = 2}, - [336] = {.lex_state = 76, .external_lex_state = 2}, - [337] = {.lex_state = 76, .external_lex_state = 2}, - [338] = {.lex_state = 76, .external_lex_state = 2}, - [339] = {.lex_state = 76, .external_lex_state = 2}, - [340] = {.lex_state = 76, .external_lex_state = 2}, - [341] = {.lex_state = 76, .external_lex_state = 2}, - [342] = {.lex_state = 76, .external_lex_state = 2}, - [343] = {.lex_state = 76, .external_lex_state = 2}, - [344] = {.lex_state = 76, .external_lex_state = 2}, - [345] = {.lex_state = 76, .external_lex_state = 2}, - [346] = {.lex_state = 76, .external_lex_state = 2}, - [347] = {.lex_state = 76, .external_lex_state = 2}, - [348] = {.lex_state = 76, .external_lex_state = 2}, - [349] = {.lex_state = 76, .external_lex_state = 2}, - [350] = {.lex_state = 76, .external_lex_state = 2}, - [351] = {.lex_state = 76, .external_lex_state = 2}, - [352] = {.lex_state = 76, .external_lex_state = 2}, - [353] = {.lex_state = 76, .external_lex_state = 2}, - [354] = {.lex_state = 76, .external_lex_state = 2}, - [355] = {.lex_state = 76, .external_lex_state = 2}, - [356] = {.lex_state = 76, .external_lex_state = 2}, - [357] = {.lex_state = 76, .external_lex_state = 2}, - [358] = {.lex_state = 76, .external_lex_state = 2}, - [359] = {.lex_state = 76, .external_lex_state = 2}, - [360] = {.lex_state = 76, .external_lex_state = 2}, - [361] = {.lex_state = 76, .external_lex_state = 2}, - [362] = {.lex_state = 76, .external_lex_state = 2}, - [363] = {.lex_state = 76, .external_lex_state = 2}, - [364] = {.lex_state = 76, .external_lex_state = 2}, - [365] = {.lex_state = 76, .external_lex_state = 2}, - [366] = {.lex_state = 76, .external_lex_state = 2}, - [367] = {.lex_state = 76, .external_lex_state = 2}, - [368] = {.lex_state = 76, .external_lex_state = 2}, - [369] = {.lex_state = 76, .external_lex_state = 2}, - [370] = {.lex_state = 76, .external_lex_state = 2}, - [371] = {.lex_state = 76, .external_lex_state = 2}, - [372] = {.lex_state = 76, .external_lex_state = 2}, - [373] = {.lex_state = 76, .external_lex_state = 2}, - [374] = {.lex_state = 76, .external_lex_state = 2}, - [375] = {.lex_state = 76, .external_lex_state = 2}, - [376] = {.lex_state = 76, .external_lex_state = 2}, - [377] = {.lex_state = 76, .external_lex_state = 2}, - [378] = {.lex_state = 76, .external_lex_state = 2}, - [379] = {.lex_state = 76, .external_lex_state = 2}, - [380] = {.lex_state = 76, .external_lex_state = 2}, - [381] = {.lex_state = 76, .external_lex_state = 2}, - [382] = {.lex_state = 76, .external_lex_state = 2}, - [383] = {.lex_state = 76, .external_lex_state = 2}, - [384] = {.lex_state = 76, .external_lex_state = 2}, - [385] = {.lex_state = 76, .external_lex_state = 2}, - [386] = {.lex_state = 76, .external_lex_state = 2}, - [387] = {.lex_state = 76, .external_lex_state = 2}, - [388] = {.lex_state = 76, .external_lex_state = 2}, - [389] = {.lex_state = 76, .external_lex_state = 2}, - [390] = {.lex_state = 76, .external_lex_state = 2}, - [391] = {.lex_state = 76, .external_lex_state = 2}, - [392] = {.lex_state = 76, .external_lex_state = 2}, - [393] = {.lex_state = 76, .external_lex_state = 2}, - [394] = {.lex_state = 76, .external_lex_state = 2}, - [395] = {.lex_state = 76, .external_lex_state = 2}, - [396] = {.lex_state = 76, .external_lex_state = 2}, - [397] = {.lex_state = 76, .external_lex_state = 2}, - [398] = {.lex_state = 76, .external_lex_state = 2}, - [399] = {.lex_state = 76, .external_lex_state = 2}, - [400] = {.lex_state = 76, .external_lex_state = 2}, - [401] = {.lex_state = 76, .external_lex_state = 2}, - [402] = {.lex_state = 76, .external_lex_state = 2}, - [403] = {.lex_state = 76, .external_lex_state = 2}, - [404] = {.lex_state = 76, .external_lex_state = 2}, - [405] = {.lex_state = 76, .external_lex_state = 2}, - [406] = {.lex_state = 76, .external_lex_state = 2}, - [407] = {.lex_state = 76, .external_lex_state = 2}, - [408] = {.lex_state = 76, .external_lex_state = 2}, - [409] = {.lex_state = 76, .external_lex_state = 2}, - [410] = {.lex_state = 76, .external_lex_state = 2}, - [411] = {.lex_state = 76, .external_lex_state = 2}, - [412] = {.lex_state = 76, .external_lex_state = 2}, - [413] = {.lex_state = 76, .external_lex_state = 2}, - [414] = {.lex_state = 76, .external_lex_state = 2}, - [415] = {.lex_state = 76, .external_lex_state = 2}, - [416] = {.lex_state = 76, .external_lex_state = 2}, - [417] = {.lex_state = 76, .external_lex_state = 2}, - [418] = {.lex_state = 76, .external_lex_state = 2}, - [419] = {.lex_state = 76, .external_lex_state = 2}, - [420] = {.lex_state = 76, .external_lex_state = 2}, - [421] = {.lex_state = 76, .external_lex_state = 2}, - [422] = {.lex_state = 76, .external_lex_state = 2}, - [423] = {.lex_state = 76, .external_lex_state = 2}, - [424] = {.lex_state = 76, .external_lex_state = 2}, - [425] = {.lex_state = 76, .external_lex_state = 2}, - [426] = {.lex_state = 76, .external_lex_state = 2}, - [427] = {.lex_state = 76, .external_lex_state = 2}, - [428] = {.lex_state = 76, .external_lex_state = 2}, - [429] = {.lex_state = 76, .external_lex_state = 2}, - [430] = {.lex_state = 76, .external_lex_state = 2}, - [431] = {.lex_state = 76, .external_lex_state = 2}, - [432] = {.lex_state = 76, .external_lex_state = 2}, - [433] = {.lex_state = 76, .external_lex_state = 2}, - [434] = {.lex_state = 76, .external_lex_state = 2}, - [435] = {.lex_state = 76, .external_lex_state = 2}, - [436] = {.lex_state = 76, .external_lex_state = 2}, - [437] = {.lex_state = 76, .external_lex_state = 2}, - [438] = {.lex_state = 76, .external_lex_state = 2}, - [439] = {.lex_state = 76, .external_lex_state = 2}, - [440] = {.lex_state = 76, .external_lex_state = 2}, - [441] = {.lex_state = 76, .external_lex_state = 2}, - [442] = {.lex_state = 76, .external_lex_state = 2}, - [443] = {.lex_state = 76, .external_lex_state = 2}, - [444] = {.lex_state = 76, .external_lex_state = 2}, - [445] = {.lex_state = 76, .external_lex_state = 2}, - [446] = {.lex_state = 76, .external_lex_state = 2}, - [447] = {.lex_state = 76, .external_lex_state = 2}, - [448] = {.lex_state = 76, .external_lex_state = 2}, - [449] = {.lex_state = 76, .external_lex_state = 2}, - [450] = {.lex_state = 76, .external_lex_state = 2}, - [451] = {.lex_state = 76, .external_lex_state = 2}, - [452] = {.lex_state = 76, .external_lex_state = 2}, - [453] = {.lex_state = 76, .external_lex_state = 2}, - [454] = {.lex_state = 76, .external_lex_state = 2}, - [455] = {.lex_state = 76, .external_lex_state = 2}, - [456] = {.lex_state = 76, .external_lex_state = 2}, - [457] = {.lex_state = 76, .external_lex_state = 2}, - [458] = {.lex_state = 76, .external_lex_state = 2}, - [459] = {.lex_state = 76, .external_lex_state = 2}, - [460] = {.lex_state = 76, .external_lex_state = 2}, - [461] = {.lex_state = 76, .external_lex_state = 2}, - [462] = {.lex_state = 76, .external_lex_state = 2}, - [463] = {.lex_state = 76, .external_lex_state = 2}, - [464] = {.lex_state = 76, .external_lex_state = 3}, - [465] = {.lex_state = 76, .external_lex_state = 3}, - [466] = {.lex_state = 76, .external_lex_state = 3}, - [467] = {.lex_state = 76, .external_lex_state = 3}, - [468] = {.lex_state = 76, .external_lex_state = 3}, - [469] = {.lex_state = 76, .external_lex_state = 3}, - [470] = {.lex_state = 76, .external_lex_state = 3}, - [471] = {.lex_state = 76, .external_lex_state = 3}, - [472] = {.lex_state = 76, .external_lex_state = 3}, - [473] = {.lex_state = 76, .external_lex_state = 3}, - [474] = {.lex_state = 76, .external_lex_state = 3}, - [475] = {.lex_state = 76, .external_lex_state = 3}, - [476] = {.lex_state = 76, .external_lex_state = 3}, - [477] = {.lex_state = 76, .external_lex_state = 3}, - [478] = {.lex_state = 76, .external_lex_state = 2}, - [479] = {.lex_state = 76, .external_lex_state = 2}, - [480] = {.lex_state = 76, .external_lex_state = 2}, - [481] = {.lex_state = 76, .external_lex_state = 2}, - [482] = {.lex_state = 76, .external_lex_state = 2}, - [483] = {.lex_state = 76, .external_lex_state = 2}, - [484] = {.lex_state = 76, .external_lex_state = 2}, - [485] = {.lex_state = 76, .external_lex_state = 2}, - [486] = {.lex_state = 76, .external_lex_state = 2}, - [487] = {.lex_state = 76, .external_lex_state = 2}, - [488] = {.lex_state = 76, .external_lex_state = 2}, - [489] = {.lex_state = 76, .external_lex_state = 2}, - [490] = {.lex_state = 76, .external_lex_state = 2}, - [491] = {.lex_state = 76, .external_lex_state = 2}, - [492] = {.lex_state = 76, .external_lex_state = 2}, - [493] = {.lex_state = 76, .external_lex_state = 2}, - [494] = {.lex_state = 76, .external_lex_state = 2}, - [495] = {.lex_state = 76, .external_lex_state = 2}, - [496] = {.lex_state = 76, .external_lex_state = 2}, - [497] = {.lex_state = 76, .external_lex_state = 2}, - [498] = {.lex_state = 76, .external_lex_state = 2}, - [499] = {.lex_state = 76, .external_lex_state = 2}, - [500] = {.lex_state = 76, .external_lex_state = 2}, - [501] = {.lex_state = 76, .external_lex_state = 2}, - [502] = {.lex_state = 76, .external_lex_state = 2}, - [503] = {.lex_state = 76, .external_lex_state = 2}, - [504] = {.lex_state = 76, .external_lex_state = 2}, - [505] = {.lex_state = 76, .external_lex_state = 2}, - [506] = {.lex_state = 76, .external_lex_state = 2}, - [507] = {.lex_state = 76, .external_lex_state = 2}, - [508] = {.lex_state = 76, .external_lex_state = 2}, - [509] = {.lex_state = 76, .external_lex_state = 2}, - [510] = {.lex_state = 76, .external_lex_state = 2}, - [511] = {.lex_state = 76, .external_lex_state = 2}, - [512] = {.lex_state = 76, .external_lex_state = 2}, - [513] = {.lex_state = 76, .external_lex_state = 2}, - [514] = {.lex_state = 76, .external_lex_state = 2}, - [515] = {.lex_state = 76, .external_lex_state = 2}, - [516] = {.lex_state = 76, .external_lex_state = 2}, - [517] = {.lex_state = 76, .external_lex_state = 2}, - [518] = {.lex_state = 76, .external_lex_state = 2}, - [519] = {.lex_state = 76, .external_lex_state = 2}, - [520] = {.lex_state = 76, .external_lex_state = 2}, - [521] = {.lex_state = 76, .external_lex_state = 2}, - [522] = {.lex_state = 76, .external_lex_state = 2}, - [523] = {.lex_state = 76, .external_lex_state = 2}, - [524] = {.lex_state = 76, .external_lex_state = 2}, - [525] = {.lex_state = 76, .external_lex_state = 2}, - [526] = {.lex_state = 76, .external_lex_state = 2}, - [527] = {.lex_state = 76, .external_lex_state = 2}, - [528] = {.lex_state = 76, .external_lex_state = 2}, - [529] = {.lex_state = 76, .external_lex_state = 2}, - [530] = {.lex_state = 76, .external_lex_state = 2}, - [531] = {.lex_state = 76, .external_lex_state = 2}, - [532] = {.lex_state = 76, .external_lex_state = 2}, - [533] = {.lex_state = 76, .external_lex_state = 2}, - [534] = {.lex_state = 76, .external_lex_state = 2}, - [535] = {.lex_state = 76, .external_lex_state = 2}, - [536] = {.lex_state = 76, .external_lex_state = 2}, - [537] = {.lex_state = 76, .external_lex_state = 2}, - [538] = {.lex_state = 76, .external_lex_state = 2}, - [539] = {.lex_state = 76, .external_lex_state = 2}, - [540] = {.lex_state = 76, .external_lex_state = 2}, - [541] = {.lex_state = 76, .external_lex_state = 2}, - [542] = {.lex_state = 76, .external_lex_state = 2}, - [543] = {.lex_state = 76, .external_lex_state = 2}, - [544] = {.lex_state = 76, .external_lex_state = 2}, - [545] = {.lex_state = 76, .external_lex_state = 2}, - [546] = {.lex_state = 76, .external_lex_state = 2}, - [547] = {.lex_state = 76, .external_lex_state = 2}, - [548] = {.lex_state = 76, .external_lex_state = 2}, - [549] = {.lex_state = 76, .external_lex_state = 2}, - [550] = {.lex_state = 76, .external_lex_state = 2}, - [551] = {.lex_state = 76, .external_lex_state = 2}, - [552] = {.lex_state = 76, .external_lex_state = 2}, - [553] = {.lex_state = 76, .external_lex_state = 2}, - [554] = {.lex_state = 76, .external_lex_state = 2}, - [555] = {.lex_state = 76, .external_lex_state = 2}, - [556] = {.lex_state = 76, .external_lex_state = 2}, - [557] = {.lex_state = 76, .external_lex_state = 2}, - [558] = {.lex_state = 76, .external_lex_state = 2}, - [559] = {.lex_state = 76, .external_lex_state = 2}, - [560] = {.lex_state = 76, .external_lex_state = 2}, - [561] = {.lex_state = 76, .external_lex_state = 2}, - [562] = {.lex_state = 76, .external_lex_state = 2}, - [563] = {.lex_state = 76, .external_lex_state = 2}, - [564] = {.lex_state = 76, .external_lex_state = 2}, - [565] = {.lex_state = 76, .external_lex_state = 2}, - [566] = {.lex_state = 76, .external_lex_state = 2}, - [567] = {.lex_state = 76, .external_lex_state = 2}, - [568] = {.lex_state = 76, .external_lex_state = 2}, - [569] = {.lex_state = 76, .external_lex_state = 2}, - [570] = {.lex_state = 76, .external_lex_state = 2}, - [571] = {.lex_state = 76, .external_lex_state = 2}, - [572] = {.lex_state = 76, .external_lex_state = 2}, - [573] = {.lex_state = 76, .external_lex_state = 2}, - [574] = {.lex_state = 76, .external_lex_state = 2}, - [575] = {.lex_state = 76, .external_lex_state = 2}, - [576] = {.lex_state = 76, .external_lex_state = 2}, - [577] = {.lex_state = 76, .external_lex_state = 2}, - [578] = {.lex_state = 76, .external_lex_state = 2}, - [579] = {.lex_state = 76, .external_lex_state = 2}, - [580] = {.lex_state = 76, .external_lex_state = 2}, - [581] = {.lex_state = 76, .external_lex_state = 2}, - [582] = {.lex_state = 76, .external_lex_state = 2}, - [583] = {.lex_state = 76, .external_lex_state = 2}, - [584] = {.lex_state = 76, .external_lex_state = 2}, - [585] = {.lex_state = 76, .external_lex_state = 2}, - [586] = {.lex_state = 77}, - [587] = {.lex_state = 76, .external_lex_state = 2}, - [588] = {.lex_state = 77}, - [589] = {.lex_state = 76, .external_lex_state = 2}, - [590] = {.lex_state = 76, .external_lex_state = 2}, - [591] = {.lex_state = 76, .external_lex_state = 2}, - [592] = {.lex_state = 77}, - [593] = {.lex_state = 77}, - [594] = {.lex_state = 77}, - [595] = {.lex_state = 77}, - [596] = {.lex_state = 77}, - [597] = {.lex_state = 77}, - [598] = {.lex_state = 77}, - [599] = {.lex_state = 77}, - [600] = {.lex_state = 77}, - [601] = {.lex_state = 77}, - [602] = {.lex_state = 77}, - [603] = {.lex_state = 77}, - [604] = {.lex_state = 77}, - [605] = {.lex_state = 77}, - [606] = {.lex_state = 77}, - [607] = {.lex_state = 77}, - [608] = {.lex_state = 77}, - [609] = {.lex_state = 77}, - [610] = {.lex_state = 77}, - [611] = {.lex_state = 77}, - [612] = {.lex_state = 77}, - [613] = {.lex_state = 77}, - [614] = {.lex_state = 77}, - [615] = {.lex_state = 77}, - [616] = {.lex_state = 77}, - [617] = {.lex_state = 77}, - [618] = {.lex_state = 77}, - [619] = {.lex_state = 77}, - [620] = {.lex_state = 77, .external_lex_state = 4}, - [621] = {.lex_state = 77}, - [622] = {.lex_state = 77, .external_lex_state = 4}, - [623] = {.lex_state = 77, .external_lex_state = 4}, - [624] = {.lex_state = 77, .external_lex_state = 4}, - [625] = {.lex_state = 77, .external_lex_state = 4}, - [626] = {.lex_state = 77}, - [627] = {.lex_state = 77, .external_lex_state = 4}, - [628] = {.lex_state = 77, .external_lex_state = 4}, - [629] = {.lex_state = 77, .external_lex_state = 4}, - [630] = {.lex_state = 77, .external_lex_state = 4}, - [631] = {.lex_state = 77, .external_lex_state = 4}, - [632] = {.lex_state = 77, .external_lex_state = 4}, - [633] = {.lex_state = 77, .external_lex_state = 4}, - [634] = {.lex_state = 77}, - [635] = {.lex_state = 77}, - [636] = {.lex_state = 77, .external_lex_state = 4}, - [637] = {.lex_state = 77}, - [638] = {.lex_state = 77}, - [639] = {.lex_state = 77, .external_lex_state = 4}, - [640] = {.lex_state = 77, .external_lex_state = 4}, - [641] = {.lex_state = 77, .external_lex_state = 4}, - [642] = {.lex_state = 77, .external_lex_state = 4}, - [643] = {.lex_state = 77, .external_lex_state = 4}, - [644] = {.lex_state = 77}, - [645] = {.lex_state = 77}, - [646] = {.lex_state = 77, .external_lex_state = 4}, - [647] = {.lex_state = 77, .external_lex_state = 4}, - [648] = {.lex_state = 77, .external_lex_state = 4}, - [649] = {.lex_state = 77, .external_lex_state = 4}, - [650] = {.lex_state = 77, .external_lex_state = 4}, - [651] = {.lex_state = 77}, - [652] = {.lex_state = 77, .external_lex_state = 4}, - [653] = {.lex_state = 77, .external_lex_state = 4}, - [654] = {.lex_state = 77, .external_lex_state = 4}, - [655] = {.lex_state = 77, .external_lex_state = 4}, - [656] = {.lex_state = 77}, - [657] = {.lex_state = 77}, - [658] = {.lex_state = 77}, - [659] = {.lex_state = 77, .external_lex_state = 4}, - [660] = {.lex_state = 77}, - [661] = {.lex_state = 77}, - [662] = {.lex_state = 77}, - [663] = {.lex_state = 77}, - [664] = {.lex_state = 77}, - [665] = {.lex_state = 77}, - [666] = {.lex_state = 77}, - [667] = {.lex_state = 77}, - [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 = 77}, - [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 = 6}, - [693] = {.lex_state = 6}, - [694] = {.lex_state = 6}, - [695] = {.lex_state = 6}, - [696] = {.lex_state = 6}, - [697] = {.lex_state = 6}, - [698] = {.lex_state = 6}, - [699] = {.lex_state = 77}, - [700] = {.lex_state = 6}, - [701] = {.lex_state = 6}, - [702] = {.lex_state = 6}, - [703] = {.lex_state = 6}, - [704] = {.lex_state = 6}, - [705] = {.lex_state = 6}, - [706] = {.lex_state = 6}, - [707] = {.lex_state = 6}, - [708] = {.lex_state = 6}, - [709] = {.lex_state = 6}, - [710] = {.lex_state = 6}, - [711] = {.lex_state = 6}, - [712] = {.lex_state = 6}, - [713] = {.lex_state = 6}, - [714] = {.lex_state = 6}, - [715] = {.lex_state = 6}, - [716] = {.lex_state = 6}, - [717] = {.lex_state = 6}, - [718] = {.lex_state = 6}, - [719] = {.lex_state = 6}, - [720] = {.lex_state = 6}, - [721] = {.lex_state = 6}, - [722] = {.lex_state = 6}, - [723] = {.lex_state = 6}, - [724] = {.lex_state = 6}, - [725] = {.lex_state = 6}, - [726] = {.lex_state = 6}, - [727] = {.lex_state = 6}, - [728] = {.lex_state = 6}, - [729] = {.lex_state = 6}, - [730] = {.lex_state = 6}, - [731] = {.lex_state = 6}, - [732] = {.lex_state = 6}, - [733] = {.lex_state = 7}, - [734] = {.lex_state = 77, .external_lex_state = 4}, - [735] = {.lex_state = 6}, - [736] = {.lex_state = 78, .external_lex_state = 2}, - [737] = {.lex_state = 6, .external_lex_state = 4}, - [738] = {.lex_state = 6, .external_lex_state = 4}, - [739] = {.lex_state = 77, .external_lex_state = 4}, - [740] = {.lex_state = 78, .external_lex_state = 2}, - [741] = {.lex_state = 78, .external_lex_state = 2}, - [742] = {.lex_state = 78, .external_lex_state = 2}, - [743] = {.lex_state = 6}, - [744] = {.lex_state = 6}, - [745] = {.lex_state = 8, .external_lex_state = 2}, - [746] = {.lex_state = 6}, - [747] = {.lex_state = 14}, - [748] = {.lex_state = 14}, - [749] = {.lex_state = 6}, - [750] = {.lex_state = 78, .external_lex_state = 2}, - [751] = {.lex_state = 6}, - [752] = {.lex_state = 7}, - [753] = {.lex_state = 8, .external_lex_state = 2}, - [754] = {.lex_state = 6, .external_lex_state = 4}, - [755] = {.lex_state = 6, .external_lex_state = 4}, - [756] = {.lex_state = 12}, - [757] = {.lex_state = 6, .external_lex_state = 4}, - [758] = {.lex_state = 4, .external_lex_state = 2}, - [759] = {.lex_state = 6}, - [760] = {.lex_state = 78, .external_lex_state = 2}, - [761] = {.lex_state = 12}, - [762] = {.lex_state = 6, .external_lex_state = 4}, - [763] = {.lex_state = 6, .external_lex_state = 4}, - [764] = {.lex_state = 6, .external_lex_state = 4}, - [765] = {.lex_state = 6, .external_lex_state = 4}, - [766] = {.lex_state = 6, .external_lex_state = 4}, - [767] = {.lex_state = 6, .external_lex_state = 4}, - [768] = {.lex_state = 6, .external_lex_state = 4}, - [769] = {.lex_state = 6, .external_lex_state = 4}, - [770] = {.lex_state = 6, .external_lex_state = 4}, - [771] = {.lex_state = 6, .external_lex_state = 4}, - [772] = {.lex_state = 12}, - [773] = {.lex_state = 6, .external_lex_state = 4}, - [774] = {.lex_state = 6, .external_lex_state = 4}, - [775] = {.lex_state = 6, .external_lex_state = 4}, - [776] = {.lex_state = 6, .external_lex_state = 4}, - [777] = {.lex_state = 6, .external_lex_state = 4}, - [778] = {.lex_state = 12}, - [779] = {.lex_state = 6, .external_lex_state = 4}, - [780] = {.lex_state = 6, .external_lex_state = 4}, - [781] = {.lex_state = 6, .external_lex_state = 4}, - [782] = {.lex_state = 6, .external_lex_state = 4}, - [783] = {.lex_state = 6, .external_lex_state = 4}, - [784] = {.lex_state = 7}, - [785] = {.lex_state = 12}, - [786] = {.lex_state = 6, .external_lex_state = 4}, - [787] = {.lex_state = 6, .external_lex_state = 4}, - [788] = {.lex_state = 6, .external_lex_state = 4}, - [789] = {.lex_state = 7}, - [790] = {.lex_state = 77, .external_lex_state = 4}, - [791] = {.lex_state = 6, .external_lex_state = 4}, - [792] = {.lex_state = 6, .external_lex_state = 4}, - [793] = {.lex_state = 6, .external_lex_state = 4}, - [794] = {.lex_state = 77, .external_lex_state = 4}, - [795] = {.lex_state = 6, .external_lex_state = 4}, - [796] = {.lex_state = 12}, - [797] = {.lex_state = 6, .external_lex_state = 4}, - [798] = {.lex_state = 6, .external_lex_state = 4}, - [799] = {.lex_state = 6, .external_lex_state = 4}, - [800] = {.lex_state = 6, .external_lex_state = 4}, - [801] = {.lex_state = 6, .external_lex_state = 4}, - [802] = {.lex_state = 6, .external_lex_state = 4}, - [803] = {.lex_state = 6, .external_lex_state = 4}, - [804] = {.lex_state = 6, .external_lex_state = 4}, - [805] = {.lex_state = 6, .external_lex_state = 4}, - [806] = {.lex_state = 6, .external_lex_state = 4}, - [807] = {.lex_state = 12}, - [808] = {.lex_state = 6, .external_lex_state = 4}, - [809] = {.lex_state = 6}, - [810] = {.lex_state = 6, .external_lex_state = 4}, - [811] = {.lex_state = 6, .external_lex_state = 4}, - [812] = {.lex_state = 6, .external_lex_state = 4}, - [813] = {.lex_state = 6, .external_lex_state = 4}, - [814] = {.lex_state = 6, .external_lex_state = 4}, - [815] = {.lex_state = 6, .external_lex_state = 4}, - [816] = {.lex_state = 6, .external_lex_state = 4}, - [817] = {.lex_state = 6, .external_lex_state = 4}, - [818] = {.lex_state = 6, .external_lex_state = 4}, - [819] = {.lex_state = 6, .external_lex_state = 4}, - [820] = {.lex_state = 6, .external_lex_state = 4}, - [821] = {.lex_state = 6, .external_lex_state = 4}, - [822] = {.lex_state = 6, .external_lex_state = 4}, - [823] = {.lex_state = 6, .external_lex_state = 4}, - [824] = {.lex_state = 6, .external_lex_state = 4}, - [825] = {.lex_state = 6, .external_lex_state = 4}, - [826] = {.lex_state = 6}, - [827] = {.lex_state = 6, .external_lex_state = 4}, - [828] = {.lex_state = 6, .external_lex_state = 4}, - [829] = {.lex_state = 6, .external_lex_state = 4}, - [830] = {.lex_state = 6, .external_lex_state = 4}, - [831] = {.lex_state = 6, .external_lex_state = 4}, - [832] = {.lex_state = 6, .external_lex_state = 4}, - [833] = {.lex_state = 78, .external_lex_state = 2}, - [834] = {.lex_state = 78, .external_lex_state = 2}, - [835] = {.lex_state = 78, .external_lex_state = 2}, - [836] = {.lex_state = 78, .external_lex_state = 2}, - [837] = {.lex_state = 6, .external_lex_state = 4}, - [838] = {.lex_state = 78, .external_lex_state = 2}, - [839] = {.lex_state = 78, .external_lex_state = 2}, - [840] = {.lex_state = 78, .external_lex_state = 2}, - [841] = {.lex_state = 78, .external_lex_state = 2}, - [842] = {.lex_state = 78, .external_lex_state = 2}, - [843] = {.lex_state = 6, .external_lex_state = 4}, - [844] = {.lex_state = 78, .external_lex_state = 2}, - [845] = {.lex_state = 6, .external_lex_state = 4}, - [846] = {.lex_state = 6, .external_lex_state = 4}, - [847] = {.lex_state = 78, .external_lex_state = 2}, - [848] = {.lex_state = 78, .external_lex_state = 2}, - [849] = {.lex_state = 78, .external_lex_state = 2}, - [850] = {.lex_state = 6, .external_lex_state = 4}, - [851] = {.lex_state = 78, .external_lex_state = 2}, - [852] = {.lex_state = 78, .external_lex_state = 2}, - [853] = {.lex_state = 7}, - [854] = {.lex_state = 7}, - [855] = {.lex_state = 7}, - [856] = {.lex_state = 7}, - [857] = {.lex_state = 7}, - [858] = {.lex_state = 7}, - [859] = {.lex_state = 7}, - [860] = {.lex_state = 7}, - [861] = {.lex_state = 7}, - [862] = {.lex_state = 7}, - [863] = {.lex_state = 7}, - [864] = {.lex_state = 7}, - [865] = {.lex_state = 7}, - [866] = {.lex_state = 7}, - [867] = {.lex_state = 7}, - [868] = {.lex_state = 7}, - [869] = {.lex_state = 7}, - [870] = {.lex_state = 7}, - [871] = {.lex_state = 7}, - [872] = {.lex_state = 7}, - [873] = {.lex_state = 7}, - [874] = {.lex_state = 7}, - [875] = {.lex_state = 7}, - [876] = {.lex_state = 7}, - [877] = {.lex_state = 7}, - [878] = {.lex_state = 7}, - [879] = {.lex_state = 7}, - [880] = {.lex_state = 7}, - [881] = {.lex_state = 7}, - [882] = {.lex_state = 7}, - [883] = {.lex_state = 7}, - [884] = {.lex_state = 7}, - [885] = {.lex_state = 7}, - [886] = {.lex_state = 7}, - [887] = {.lex_state = 7}, - [888] = {.lex_state = 7}, - [889] = {.lex_state = 7}, - [890] = {.lex_state = 7}, - [891] = {.lex_state = 7}, - [892] = {.lex_state = 7}, - [893] = {.lex_state = 7}, - [894] = {.lex_state = 7}, - [895] = {.lex_state = 7}, - [896] = {.lex_state = 7}, - [897] = {.lex_state = 7}, - [898] = {.lex_state = 7}, - [899] = {.lex_state = 7}, - [900] = {.lex_state = 7}, - [901] = {.lex_state = 7}, - [902] = {.lex_state = 7}, - [903] = {.lex_state = 7}, - [904] = {.lex_state = 7}, - [905] = {.lex_state = 7}, - [906] = {.lex_state = 7}, - [907] = {.lex_state = 7}, - [908] = {.lex_state = 7}, - [909] = {.lex_state = 7}, - [910] = {.lex_state = 7}, - [911] = {.lex_state = 7}, - [912] = {.lex_state = 7}, - [913] = {.lex_state = 7}, - [914] = {.lex_state = 7, .external_lex_state = 4}, - [915] = {.lex_state = 7, .external_lex_state = 4}, - [916] = {.lex_state = 7}, - [917] = {.lex_state = 7}, - [918] = {.lex_state = 7}, - [919] = {.lex_state = 7}, - [920] = {.lex_state = 7}, - [921] = {.lex_state = 7}, - [922] = {.lex_state = 7}, - [923] = {.lex_state = 7}, - [924] = {.lex_state = 7}, - [925] = {.lex_state = 7}, - [926] = {.lex_state = 7}, - [927] = {.lex_state = 7}, - [928] = {.lex_state = 7}, - [929] = {.lex_state = 7}, - [930] = {.lex_state = 7}, - [931] = {.lex_state = 7}, - [932] = {.lex_state = 7}, - [933] = {.lex_state = 7}, - [934] = {.lex_state = 7}, - [935] = {.lex_state = 7}, - [936] = {.lex_state = 7}, - [937] = {.lex_state = 7}, - [938] = {.lex_state = 7}, - [939] = {.lex_state = 7}, - [940] = {.lex_state = 7}, - [941] = {.lex_state = 7}, - [942] = {.lex_state = 7}, - [943] = {.lex_state = 7}, - [944] = {.lex_state = 7}, - [945] = {.lex_state = 7}, - [946] = {.lex_state = 7}, - [947] = {.lex_state = 7}, - [948] = {.lex_state = 7}, - [949] = {.lex_state = 7}, - [950] = {.lex_state = 7}, - [951] = {.lex_state = 7}, - [952] = {.lex_state = 7}, - [953] = {.lex_state = 7}, - [954] = {.lex_state = 7}, - [955] = {.lex_state = 7}, - [956] = {.lex_state = 7}, - [957] = {.lex_state = 7}, - [958] = {.lex_state = 7}, - [959] = {.lex_state = 7}, - [960] = {.lex_state = 7}, - [961] = {.lex_state = 7}, - [962] = {.lex_state = 7}, - [963] = {.lex_state = 7}, - [964] = {.lex_state = 7}, - [965] = {.lex_state = 7}, - [966] = {.lex_state = 7}, - [967] = {.lex_state = 7}, - [968] = {.lex_state = 7}, - [969] = {.lex_state = 7}, - [970] = {.lex_state = 7}, - [971] = {.lex_state = 7}, - [972] = {.lex_state = 7}, - [973] = {.lex_state = 7}, - [974] = {.lex_state = 7}, - [975] = {.lex_state = 7}, - [976] = {.lex_state = 7}, - [977] = {.lex_state = 7}, - [978] = {.lex_state = 7}, - [979] = {.lex_state = 7}, - [980] = {.lex_state = 7}, - [981] = {.lex_state = 7}, - [982] = {.lex_state = 7}, - [983] = {.lex_state = 7}, - [984] = {.lex_state = 7}, - [985] = {.lex_state = 7}, - [986] = {.lex_state = 7}, - [987] = {.lex_state = 7}, - [988] = {.lex_state = 7}, - [989] = {.lex_state = 7}, - [990] = {.lex_state = 7}, - [991] = {.lex_state = 7}, - [992] = {.lex_state = 7}, - [993] = {.lex_state = 7}, - [994] = {.lex_state = 7}, - [995] = {.lex_state = 7}, - [996] = {.lex_state = 7}, - [997] = {.lex_state = 7}, - [998] = {.lex_state = 7}, - [999] = {.lex_state = 7}, - [1000] = {.lex_state = 7}, - [1001] = {.lex_state = 7}, - [1002] = {.lex_state = 7}, - [1003] = {.lex_state = 7}, - [1004] = {.lex_state = 7}, - [1005] = {.lex_state = 7}, - [1006] = {.lex_state = 7}, - [1007] = {.lex_state = 7}, - [1008] = {.lex_state = 7}, - [1009] = {.lex_state = 7}, - [1010] = {.lex_state = 7}, - [1011] = {.lex_state = 7}, - [1012] = {.lex_state = 7}, - [1013] = {.lex_state = 7}, - [1014] = {.lex_state = 7, .external_lex_state = 4}, - [1015] = {.lex_state = 7, .external_lex_state = 4}, - [1016] = {.lex_state = 7, .external_lex_state = 4}, - [1017] = {.lex_state = 7, .external_lex_state = 4}, - [1018] = {.lex_state = 7, .external_lex_state = 4}, - [1019] = {.lex_state = 7, .external_lex_state = 4}, - [1020] = {.lex_state = 7, .external_lex_state = 4}, - [1021] = {.lex_state = 7, .external_lex_state = 4}, - [1022] = {.lex_state = 7, .external_lex_state = 4}, - [1023] = {.lex_state = 7, .external_lex_state = 4}, - [1024] = {.lex_state = 7, .external_lex_state = 4}, - [1025] = {.lex_state = 7, .external_lex_state = 4}, - [1026] = {.lex_state = 7, .external_lex_state = 4}, - [1027] = {.lex_state = 7, .external_lex_state = 4}, - [1028] = {.lex_state = 7, .external_lex_state = 4}, - [1029] = {.lex_state = 7, .external_lex_state = 4}, - [1030] = {.lex_state = 7, .external_lex_state = 4}, - [1031] = {.lex_state = 7, .external_lex_state = 4}, - [1032] = {.lex_state = 7, .external_lex_state = 4}, - [1033] = {.lex_state = 7, .external_lex_state = 4}, - [1034] = {.lex_state = 7, .external_lex_state = 4}, - [1035] = {.lex_state = 7, .external_lex_state = 4}, - [1036] = {.lex_state = 7, .external_lex_state = 4}, - [1037] = {.lex_state = 7, .external_lex_state = 4}, - [1038] = {.lex_state = 7, .external_lex_state = 4}, - [1039] = {.lex_state = 7, .external_lex_state = 4}, - [1040] = {.lex_state = 7, .external_lex_state = 4}, - [1041] = {.lex_state = 7, .external_lex_state = 4}, - [1042] = {.lex_state = 7, .external_lex_state = 4}, - [1043] = {.lex_state = 7, .external_lex_state = 4}, - [1044] = {.lex_state = 7, .external_lex_state = 4}, - [1045] = {.lex_state = 7, .external_lex_state = 4}, - [1046] = {.lex_state = 7, .external_lex_state = 4}, - [1047] = {.lex_state = 7, .external_lex_state = 4}, - [1048] = {.lex_state = 7, .external_lex_state = 4}, - [1049] = {.lex_state = 7, .external_lex_state = 4}, - [1050] = {.lex_state = 7, .external_lex_state = 4}, - [1051] = {.lex_state = 7, .external_lex_state = 4}, - [1052] = {.lex_state = 7, .external_lex_state = 4}, - [1053] = {.lex_state = 7, .external_lex_state = 4}, - [1054] = {.lex_state = 7, .external_lex_state = 4}, - [1055] = {.lex_state = 7, .external_lex_state = 4}, - [1056] = {.lex_state = 7, .external_lex_state = 4}, - [1057] = {.lex_state = 7, .external_lex_state = 4}, - [1058] = {.lex_state = 7, .external_lex_state = 4}, - [1059] = {.lex_state = 7, .external_lex_state = 4}, - [1060] = {.lex_state = 7, .external_lex_state = 4}, - [1061] = {.lex_state = 7, .external_lex_state = 4}, - [1062] = {.lex_state = 7, .external_lex_state = 4}, - [1063] = {.lex_state = 7, .external_lex_state = 4}, - [1064] = {.lex_state = 7, .external_lex_state = 4}, - [1065] = {.lex_state = 7, .external_lex_state = 4}, - [1066] = {.lex_state = 7, .external_lex_state = 4}, - [1067] = {.lex_state = 7, .external_lex_state = 4}, - [1068] = {.lex_state = 7, .external_lex_state = 4}, - [1069] = {.lex_state = 7, .external_lex_state = 4}, - [1070] = {.lex_state = 7, .external_lex_state = 4}, - [1071] = {.lex_state = 7, .external_lex_state = 4}, - [1072] = {.lex_state = 7, .external_lex_state = 4}, - [1073] = {.lex_state = 7, .external_lex_state = 4}, - [1074] = {.lex_state = 7, .external_lex_state = 4}, - [1075] = {.lex_state = 7, .external_lex_state = 4}, - [1076] = {.lex_state = 7, .external_lex_state = 4}, - [1077] = {.lex_state = 7, .external_lex_state = 4}, - [1078] = {.lex_state = 7, .external_lex_state = 4}, - [1079] = {.lex_state = 7, .external_lex_state = 4}, - [1080] = {.lex_state = 7, .external_lex_state = 4}, - [1081] = {.lex_state = 7, .external_lex_state = 4}, - [1082] = {.lex_state = 7, .external_lex_state = 4}, - [1083] = {.lex_state = 7, .external_lex_state = 4}, - [1084] = {.lex_state = 7, .external_lex_state = 4}, - [1085] = {.lex_state = 7, .external_lex_state = 4}, - [1086] = {.lex_state = 7, .external_lex_state = 4}, - [1087] = {.lex_state = 7, .external_lex_state = 4}, - [1088] = {.lex_state = 7, .external_lex_state = 4}, - [1089] = {.lex_state = 7, .external_lex_state = 4}, - [1090] = {.lex_state = 7, .external_lex_state = 4}, - [1091] = {.lex_state = 7, .external_lex_state = 4}, - [1092] = {.lex_state = 7, .external_lex_state = 4}, - [1093] = {.lex_state = 7, .external_lex_state = 4}, - [1094] = {.lex_state = 7, .external_lex_state = 4}, - [1095] = {.lex_state = 7, .external_lex_state = 4}, - [1096] = {.lex_state = 7, .external_lex_state = 4}, - [1097] = {.lex_state = 7, .external_lex_state = 4}, - [1098] = {.lex_state = 7, .external_lex_state = 4}, - [1099] = {.lex_state = 7, .external_lex_state = 4}, - [1100] = {.lex_state = 7, .external_lex_state = 4}, - [1101] = {.lex_state = 7, .external_lex_state = 4}, - [1102] = {.lex_state = 7, .external_lex_state = 4}, - [1103] = {.lex_state = 7, .external_lex_state = 4}, - [1104] = {.lex_state = 7, .external_lex_state = 4}, - [1105] = {.lex_state = 7, .external_lex_state = 4}, - [1106] = {.lex_state = 7, .external_lex_state = 4}, - [1107] = {.lex_state = 7, .external_lex_state = 4}, - [1108] = {.lex_state = 7, .external_lex_state = 4}, - [1109] = {.lex_state = 7, .external_lex_state = 4}, - [1110] = {.lex_state = 7, .external_lex_state = 4}, - [1111] = {.lex_state = 7, .external_lex_state = 4}, - [1112] = {.lex_state = 7, .external_lex_state = 4}, - [1113] = {.lex_state = 7, .external_lex_state = 4}, - [1114] = {.lex_state = 7, .external_lex_state = 4}, - [1115] = {.lex_state = 7, .external_lex_state = 4}, - [1116] = {.lex_state = 7, .external_lex_state = 4}, - [1117] = {.lex_state = 7, .external_lex_state = 4}, - [1118] = {.lex_state = 7, .external_lex_state = 4}, - [1119] = {.lex_state = 7, .external_lex_state = 4}, - [1120] = {.lex_state = 7, .external_lex_state = 4}, - [1121] = {.lex_state = 7, .external_lex_state = 4}, - [1122] = {.lex_state = 7, .external_lex_state = 4}, - [1123] = {.lex_state = 7, .external_lex_state = 4}, - [1124] = {.lex_state = 7, .external_lex_state = 4}, - [1125] = {.lex_state = 7, .external_lex_state = 4}, - [1126] = {.lex_state = 7}, - [1127] = {.lex_state = 7}, - [1128] = {.lex_state = 7}, - [1129] = {.lex_state = 7}, - [1130] = {.lex_state = 7}, - [1131] = {.lex_state = 7}, - [1132] = {.lex_state = 7}, - [1133] = {.lex_state = 7}, - [1134] = {.lex_state = 7}, - [1135] = {.lex_state = 7}, - [1136] = {.lex_state = 7}, - [1137] = {.lex_state = 7}, - [1138] = {.lex_state = 7}, - [1139] = {.lex_state = 7}, - [1140] = {.lex_state = 7}, - [1141] = {.lex_state = 7}, - [1142] = {.lex_state = 7}, - [1143] = {.lex_state = 7}, - [1144] = {.lex_state = 7}, - [1145] = {.lex_state = 7}, - [1146] = {.lex_state = 7}, - [1147] = {.lex_state = 7}, - [1148] = {.lex_state = 7}, - [1149] = {.lex_state = 7}, - [1150] = {.lex_state = 7}, - [1151] = {.lex_state = 7}, - [1152] = {.lex_state = 7}, - [1153] = {.lex_state = 7}, - [1154] = {.lex_state = 7}, - [1155] = {.lex_state = 7}, - [1156] = {.lex_state = 7}, - [1157] = {.lex_state = 7}, - [1158] = {.lex_state = 7}, - [1159] = {.lex_state = 7}, - [1160] = {.lex_state = 7}, - [1161] = {.lex_state = 7}, - [1162] = {.lex_state = 7}, - [1163] = {.lex_state = 7}, - [1164] = {.lex_state = 7}, - [1165] = {.lex_state = 7}, - [1166] = {.lex_state = 7}, - [1167] = {.lex_state = 7}, - [1168] = {.lex_state = 7}, - [1169] = {.lex_state = 7}, - [1170] = {.lex_state = 7}, - [1171] = {.lex_state = 7}, - [1172] = {.lex_state = 7}, - [1173] = {.lex_state = 7}, - [1174] = {.lex_state = 7}, - [1175] = {.lex_state = 7}, - [1176] = {.lex_state = 7}, - [1177] = {.lex_state = 7, .external_lex_state = 4}, - [1178] = {.lex_state = 7}, - [1179] = {.lex_state = 7, .external_lex_state = 4}, - [1180] = {.lex_state = 7, .external_lex_state = 4}, - [1181] = {.lex_state = 7, .external_lex_state = 4}, - [1182] = {.lex_state = 7, .external_lex_state = 4}, - [1183] = {.lex_state = 14}, - [1184] = {.lex_state = 7}, - [1185] = {.lex_state = 7}, - [1186] = {.lex_state = 7}, - [1187] = {.lex_state = 7, .external_lex_state = 4}, - [1188] = {.lex_state = 7, .external_lex_state = 4}, - [1189] = {.lex_state = 7}, - [1190] = {.lex_state = 7}, - [1191] = {.lex_state = 7}, - [1192] = {.lex_state = 7}, - [1193] = {.lex_state = 7}, - [1194] = {.lex_state = 15}, - [1195] = {.lex_state = 7}, - [1196] = {.lex_state = 7}, - [1197] = {.lex_state = 7}, - [1198] = {.lex_state = 7}, - [1199] = {.lex_state = 7}, - [1200] = {.lex_state = 7, .external_lex_state = 4}, - [1201] = {.lex_state = 7}, - [1202] = {.lex_state = 7}, - [1203] = {.lex_state = 7}, - [1204] = {.lex_state = 7}, - [1205] = {.lex_state = 7}, - [1206] = {.lex_state = 7}, - [1207] = {.lex_state = 7, .external_lex_state = 4}, - [1208] = {.lex_state = 7}, - [1209] = {.lex_state = 7}, - [1210] = {.lex_state = 7}, - [1211] = {.lex_state = 7}, - [1212] = {.lex_state = 7}, - [1213] = {.lex_state = 7, .external_lex_state = 4}, - [1214] = {.lex_state = 7, .external_lex_state = 4}, - [1215] = {.lex_state = 7, .external_lex_state = 4}, - [1216] = {.lex_state = 7}, - [1217] = {.lex_state = 7}, - [1218] = {.lex_state = 7, .external_lex_state = 4}, - [1219] = {.lex_state = 7}, - [1220] = {.lex_state = 7}, - [1221] = {.lex_state = 7}, - [1222] = {.lex_state = 7}, - [1223] = {.lex_state = 7}, - [1224] = {.lex_state = 7}, - [1225] = {.lex_state = 7}, - [1226] = {.lex_state = 7}, - [1227] = {.lex_state = 7}, - [1228] = {.lex_state = 7}, - [1229] = {.lex_state = 7}, - [1230] = {.lex_state = 7}, - [1231] = {.lex_state = 7}, - [1232] = {.lex_state = 7}, - [1233] = {.lex_state = 7}, - [1234] = {.lex_state = 7}, - [1235] = {.lex_state = 7}, - [1236] = {.lex_state = 7}, - [1237] = {.lex_state = 7}, - [1238] = {.lex_state = 7}, - [1239] = {.lex_state = 7}, - [1240] = {.lex_state = 7}, - [1241] = {.lex_state = 7}, - [1242] = {.lex_state = 7}, - [1243] = {.lex_state = 7}, - [1244] = {.lex_state = 7}, - [1245] = {.lex_state = 7}, - [1246] = {.lex_state = 7}, - [1247] = {.lex_state = 7}, - [1248] = {.lex_state = 7}, - [1249] = {.lex_state = 7}, - [1250] = {.lex_state = 7}, - [1251] = {.lex_state = 7}, - [1252] = {.lex_state = 7}, - [1253] = {.lex_state = 7}, - [1254] = {.lex_state = 7}, - [1255] = {.lex_state = 7}, - [1256] = {.lex_state = 7}, - [1257] = {.lex_state = 7}, - [1258] = {.lex_state = 7}, - [1259] = {.lex_state = 7}, - [1260] = {.lex_state = 7}, - [1261] = {.lex_state = 7}, - [1262] = {.lex_state = 7}, - [1263] = {.lex_state = 7}, - [1264] = {.lex_state = 7}, - [1265] = {.lex_state = 7}, - [1266] = {.lex_state = 7}, - [1267] = {.lex_state = 7}, - [1268] = {.lex_state = 7}, - [1269] = {.lex_state = 13}, - [1270] = {.lex_state = 13}, - [1271] = {.lex_state = 13}, - [1272] = {.lex_state = 13}, - [1273] = {.lex_state = 13}, - [1274] = {.lex_state = 14}, - [1275] = {.lex_state = 14}, - [1276] = {.lex_state = 13}, - [1277] = {.lex_state = 13}, - [1278] = {.lex_state = 13}, - [1279] = {.lex_state = 13}, - [1280] = {.lex_state = 7}, - [1281] = {.lex_state = 14}, - [1282] = {.lex_state = 13}, - [1283] = {.lex_state = 13}, - [1284] = {.lex_state = 14}, - [1285] = {.lex_state = 14}, - [1286] = {.lex_state = 13}, - [1287] = {.lex_state = 13}, - [1288] = {.lex_state = 14}, - [1289] = {.lex_state = 13}, - [1290] = {.lex_state = 7}, - [1291] = {.lex_state = 7}, - [1292] = {.lex_state = 7}, - [1293] = {.lex_state = 14}, - [1294] = {.lex_state = 14}, - [1295] = {.lex_state = 7}, - [1296] = {.lex_state = 7}, - [1297] = {.lex_state = 14}, - [1298] = {.lex_state = 7}, - [1299] = {.lex_state = 7}, - [1300] = {.lex_state = 7}, - [1301] = {.lex_state = 7}, - [1302] = {.lex_state = 12}, - [1303] = {.lex_state = 12}, - [1304] = {.lex_state = 77}, - [1305] = {.lex_state = 12}, - [1306] = {.lex_state = 12}, - [1307] = {.lex_state = 77}, - [1308] = {.lex_state = 77}, - [1309] = {.lex_state = 7}, - [1310] = {.lex_state = 14}, - [1311] = {.lex_state = 14}, - [1312] = {.lex_state = 78, .external_lex_state = 2}, - [1313] = {.lex_state = 13}, - [1314] = {.lex_state = 13}, - [1315] = {.lex_state = 14}, - [1316] = {.lex_state = 14}, - [1317] = {.lex_state = 9, .external_lex_state = 5}, - [1318] = {.lex_state = 13}, - [1319] = {.lex_state = 9, .external_lex_state = 5}, - [1320] = {.lex_state = 9, .external_lex_state = 5}, - [1321] = {.lex_state = 9, .external_lex_state = 5}, - [1322] = {.lex_state = 9, .external_lex_state = 5}, - [1323] = {.lex_state = 14}, - [1324] = {.lex_state = 13}, - [1325] = {.lex_state = 13}, - [1326] = {.lex_state = 13}, - [1327] = {.lex_state = 13}, - [1328] = {.lex_state = 13}, - [1329] = {.lex_state = 13}, - [1330] = {.lex_state = 14}, - [1331] = {.lex_state = 13}, - [1332] = {.lex_state = 13}, - [1333] = {.lex_state = 13}, - [1334] = {.lex_state = 13}, - [1335] = {.lex_state = 13}, - [1336] = {.lex_state = 13}, - [1337] = {.lex_state = 13}, - [1338] = {.lex_state = 14}, - [1339] = {.lex_state = 13}, - [1340] = {.lex_state = 13}, - [1341] = {.lex_state = 13}, - [1342] = {.lex_state = 13}, - [1343] = {.lex_state = 13}, - [1344] = {.lex_state = 13}, - [1345] = {.lex_state = 13}, - [1346] = {.lex_state = 13}, - [1347] = {.lex_state = 13}, - [1348] = {.lex_state = 13}, - [1349] = {.lex_state = 13}, - [1350] = {.lex_state = 13}, - [1351] = {.lex_state = 13}, - [1352] = {.lex_state = 13}, - [1353] = {.lex_state = 13}, - [1354] = {.lex_state = 13}, - [1355] = {.lex_state = 13}, - [1356] = {.lex_state = 13}, - [1357] = {.lex_state = 13}, - [1358] = {.lex_state = 13}, - [1359] = {.lex_state = 9, .external_lex_state = 2}, - [1360] = {.lex_state = 13}, - [1361] = {.lex_state = 13}, - [1362] = {.lex_state = 13}, - [1363] = {.lex_state = 13}, - [1364] = {.lex_state = 13}, - [1365] = {.lex_state = 13}, - [1366] = {.lex_state = 13}, - [1367] = {.lex_state = 13}, - [1368] = {.lex_state = 13}, - [1369] = {.lex_state = 13}, - [1370] = {.lex_state = 14}, - [1371] = {.lex_state = 77}, - [1372] = {.lex_state = 14}, - [1373] = {.lex_state = 14}, - [1374] = {.lex_state = 77}, - [1375] = {.lex_state = 14}, - [1376] = {.lex_state = 14}, - [1377] = {.lex_state = 14}, - [1378] = {.lex_state = 14}, - [1379] = {.lex_state = 77}, - [1380] = {.lex_state = 14}, - [1381] = {.lex_state = 15}, - [1382] = {.lex_state = 14}, - [1383] = {.lex_state = 9, .external_lex_state = 6}, - [1384] = {.lex_state = 9, .external_lex_state = 6}, - [1385] = {.lex_state = 14}, - [1386] = {.lex_state = 14}, - [1387] = {.lex_state = 14}, - [1388] = {.lex_state = 14}, - [1389] = {.lex_state = 77}, - [1390] = {.lex_state = 77}, - [1391] = {.lex_state = 77}, - [1392] = {.lex_state = 77}, - [1393] = {.lex_state = 14}, - [1394] = {.lex_state = 77}, - [1395] = {.lex_state = 77}, - [1396] = {.lex_state = 14}, - [1397] = {.lex_state = 14}, - [1398] = {.lex_state = 77}, - [1399] = {.lex_state = 14}, - [1400] = {.lex_state = 77}, - [1401] = {.lex_state = 14}, - [1402] = {.lex_state = 77}, - [1403] = {.lex_state = 14}, - [1404] = {.lex_state = 14}, - [1405] = {.lex_state = 14}, - [1406] = {.lex_state = 14}, - [1407] = {.lex_state = 14}, - [1408] = {.lex_state = 14}, - [1409] = {.lex_state = 14}, - [1410] = {.lex_state = 14}, - [1411] = {.lex_state = 14}, - [1412] = {.lex_state = 14}, - [1413] = {.lex_state = 14}, - [1414] = {.lex_state = 14}, - [1415] = {.lex_state = 14}, - [1416] = {.lex_state = 14}, - [1417] = {.lex_state = 14}, - [1418] = {.lex_state = 14}, - [1419] = {.lex_state = 14}, - [1420] = {.lex_state = 14}, - [1421] = {.lex_state = 14}, - [1422] = {.lex_state = 14}, - [1423] = {.lex_state = 77}, - [1424] = {.lex_state = 77}, - [1425] = {.lex_state = 14}, - [1426] = {.lex_state = 14}, - [1427] = {.lex_state = 14}, - [1428] = {.lex_state = 14}, - [1429] = {.lex_state = 14}, - [1430] = {.lex_state = 14}, - [1431] = {.lex_state = 77}, - [1432] = {.lex_state = 77}, - [1433] = {.lex_state = 14}, - [1434] = {.lex_state = 14}, - [1435] = {.lex_state = 14}, - [1436] = {.lex_state = 77}, - [1437] = {.lex_state = 77}, - [1438] = {.lex_state = 77}, - [1439] = {.lex_state = 77}, - [1440] = {.lex_state = 15}, - [1441] = {.lex_state = 77, .external_lex_state = 4}, - [1442] = {.lex_state = 77}, - [1443] = {.lex_state = 77}, - [1444] = {.lex_state = 77}, - [1445] = {.lex_state = 14}, - [1446] = {.lex_state = 77}, - [1447] = {.lex_state = 77}, - [1448] = {.lex_state = 77}, - [1449] = {.lex_state = 14}, - [1450] = {.lex_state = 77}, - [1451] = {.lex_state = 14}, - [1452] = {.lex_state = 15}, - [1453] = {.lex_state = 77}, - [1454] = {.lex_state = 9, .external_lex_state = 5}, - [1455] = {.lex_state = 15}, - [1456] = {.lex_state = 77}, - [1457] = {.lex_state = 77, .external_lex_state = 4}, - [1458] = {.lex_state = 6}, - [1459] = {.lex_state = 9, .external_lex_state = 5}, - [1460] = {.lex_state = 77}, - [1461] = {.lex_state = 9, .external_lex_state = 5}, - [1462] = {.lex_state = 77}, - [1463] = {.lex_state = 77}, - [1464] = {.lex_state = 77}, - [1465] = {.lex_state = 9, .external_lex_state = 5}, - [1466] = {.lex_state = 77}, - [1467] = {.lex_state = 77}, - [1468] = {.lex_state = 77}, - [1469] = {.lex_state = 9, .external_lex_state = 5}, - [1470] = {.lex_state = 14}, - [1471] = {.lex_state = 9, .external_lex_state = 5}, - [1472] = {.lex_state = 77}, - [1473] = {.lex_state = 14}, - [1474] = {.lex_state = 77}, - [1475] = {.lex_state = 9, .external_lex_state = 5}, - [1476] = {.lex_state = 15}, - [1477] = {.lex_state = 77}, - [1478] = {.lex_state = 77}, - [1479] = {.lex_state = 14}, - [1480] = {.lex_state = 9, .external_lex_state = 5}, - [1481] = {.lex_state = 9, .external_lex_state = 5}, - [1482] = {.lex_state = 77}, - [1483] = {.lex_state = 77}, - [1484] = {.lex_state = 9, .external_lex_state = 5}, - [1485] = {.lex_state = 14}, - [1486] = {.lex_state = 77}, - [1487] = {.lex_state = 15}, - [1488] = {.lex_state = 77}, - [1489] = {.lex_state = 77}, - [1490] = {.lex_state = 9, .external_lex_state = 5}, - [1491] = {.lex_state = 77}, - [1492] = {.lex_state = 77}, - [1493] = {.lex_state = 77}, - [1494] = {.lex_state = 77}, - [1495] = {.lex_state = 77, .external_lex_state = 4}, - [1496] = {.lex_state = 77}, - [1497] = {.lex_state = 77}, - [1498] = {.lex_state = 14}, - [1499] = {.lex_state = 77}, - [1500] = {.lex_state = 77}, - [1501] = {.lex_state = 77}, - [1502] = {.lex_state = 77}, - [1503] = {.lex_state = 77}, - [1504] = {.lex_state = 77}, - [1505] = {.lex_state = 77}, - [1506] = {.lex_state = 77}, - [1507] = {.lex_state = 77}, - [1508] = {.lex_state = 77}, - [1509] = {.lex_state = 14}, - [1510] = {.lex_state = 79, .external_lex_state = 7}, - [1511] = {.lex_state = 77}, - [1512] = {.lex_state = 77}, - [1513] = {.lex_state = 77}, - [1514] = {.lex_state = 77}, - [1515] = {.lex_state = 77, .external_lex_state = 4}, - [1516] = {.lex_state = 77}, - [1517] = {.lex_state = 77}, - [1518] = {.lex_state = 77}, - [1519] = {.lex_state = 77}, - [1520] = {.lex_state = 77}, - [1521] = {.lex_state = 77}, - [1522] = {.lex_state = 77}, - [1523] = {.lex_state = 77}, - [1524] = {.lex_state = 77, .external_lex_state = 4}, - [1525] = {.lex_state = 77}, - [1526] = {.lex_state = 14}, - [1527] = {.lex_state = 77}, - [1528] = {.lex_state = 77}, - [1529] = {.lex_state = 77}, - [1530] = {.lex_state = 77}, - [1531] = {.lex_state = 15}, - [1532] = {.lex_state = 77}, - [1533] = {.lex_state = 77}, - [1534] = {.lex_state = 77}, - [1535] = {.lex_state = 77}, - [1536] = {.lex_state = 14}, - [1537] = {.lex_state = 77, .external_lex_state = 4}, - [1538] = {.lex_state = 77}, - [1539] = {.lex_state = 77}, - [1540] = {.lex_state = 77}, - [1541] = {.lex_state = 77}, - [1542] = {.lex_state = 77}, - [1543] = {.lex_state = 77}, - [1544] = {.lex_state = 14}, - [1545] = {.lex_state = 77}, - [1546] = {.lex_state = 14}, - [1547] = {.lex_state = 77}, - [1548] = {.lex_state = 77}, - [1549] = {.lex_state = 77}, - [1550] = {.lex_state = 77}, - [1551] = {.lex_state = 77}, - [1552] = {.lex_state = 14}, - [1553] = {.lex_state = 77}, - [1554] = {.lex_state = 77}, - [1555] = {.lex_state = 77}, - [1556] = {.lex_state = 77}, - [1557] = {.lex_state = 77, .external_lex_state = 4}, - [1558] = {.lex_state = 77, .external_lex_state = 4}, - [1559] = {.lex_state = 77, .external_lex_state = 4}, - [1560] = {.lex_state = 77}, - [1561] = {.lex_state = 77, .external_lex_state = 4}, - [1562] = {.lex_state = 77}, - [1563] = {.lex_state = 77}, - [1564] = {.lex_state = 77, .external_lex_state = 4}, - [1565] = {.lex_state = 77}, - [1566] = {.lex_state = 77}, - [1567] = {.lex_state = 77, .external_lex_state = 4}, - [1568] = {.lex_state = 77}, - [1569] = {.lex_state = 77}, - [1570] = {.lex_state = 79, .external_lex_state = 7}, - [1571] = {.lex_state = 78}, - [1572] = {.lex_state = 77, .external_lex_state = 4}, - [1573] = {.lex_state = 77}, - [1574] = {.lex_state = 78}, - [1575] = {.lex_state = 77}, - [1576] = {.lex_state = 77, .external_lex_state = 4}, - [1577] = {.lex_state = 77}, - [1578] = {.lex_state = 77}, - [1579] = {.lex_state = 77, .external_lex_state = 4}, - [1580] = {.lex_state = 79}, - [1581] = {.lex_state = 77}, - [1582] = {.lex_state = 77, .external_lex_state = 4}, - [1583] = {.lex_state = 77, .external_lex_state = 4}, - [1584] = {.lex_state = 77}, - [1585] = {.lex_state = 77}, - [1586] = {.lex_state = 77}, - [1587] = {.lex_state = 77}, - [1588] = {.lex_state = 77}, - [1589] = {.lex_state = 77}, - [1590] = {.lex_state = 77}, - [1591] = {.lex_state = 77}, - [1592] = {.lex_state = 77}, - [1593] = {.lex_state = 77}, - [1594] = {.lex_state = 77}, - [1595] = {.lex_state = 77, .external_lex_state = 4}, - [1596] = {.lex_state = 79, .external_lex_state = 7}, - [1597] = {.lex_state = 77, .external_lex_state = 4}, - [1598] = {.lex_state = 77, .external_lex_state = 4}, - [1599] = {.lex_state = 77, .external_lex_state = 4}, - [1600] = {.lex_state = 77, .external_lex_state = 4}, - [1601] = {.lex_state = 77}, - [1602] = {.lex_state = 77}, - [1603] = {.lex_state = 78}, - [1604] = {.lex_state = 77}, - [1605] = {.lex_state = 77}, - [1606] = {.lex_state = 77}, - [1607] = {.lex_state = 77, .external_lex_state = 4}, - [1608] = {.lex_state = 77}, - [1609] = {.lex_state = 14}, - [1610] = {.lex_state = 77}, - [1611] = {.lex_state = 77}, - [1612] = {.lex_state = 78}, - [1613] = {.lex_state = 77, .external_lex_state = 4}, - [1614] = {.lex_state = 78}, - [1615] = {.lex_state = 77, .external_lex_state = 4}, - [1616] = {.lex_state = 77}, - [1617] = {.lex_state = 77, .external_lex_state = 4}, - [1618] = {.lex_state = 77}, - [1619] = {.lex_state = 77}, - [1620] = {.lex_state = 77}, - [1621] = {.lex_state = 79}, - [1622] = {.lex_state = 77}, - [1623] = {.lex_state = 77, .external_lex_state = 4}, - [1624] = {.lex_state = 77}, - [1625] = {.lex_state = 77, .external_lex_state = 4}, - [1626] = {.lex_state = 77, .external_lex_state = 4}, - [1627] = {.lex_state = 77, .external_lex_state = 4}, - [1628] = {.lex_state = 77, .external_lex_state = 4}, - [1629] = {.lex_state = 77}, - [1630] = {.lex_state = 77, .external_lex_state = 4}, - [1631] = {.lex_state = 77}, - [1632] = {.lex_state = 77, .external_lex_state = 4}, - [1633] = {.lex_state = 77}, - [1634] = {.lex_state = 77}, - [1635] = {.lex_state = 77, .external_lex_state = 4}, - [1636] = {.lex_state = 77, .external_lex_state = 4}, - [1637] = {.lex_state = 77, .external_lex_state = 4}, - [1638] = {.lex_state = 77}, - [1639] = {.lex_state = 77}, - [1640] = {.lex_state = 77}, - [1641] = {.lex_state = 14}, - [1642] = {.lex_state = 77, .external_lex_state = 4}, - [1643] = {.lex_state = 77}, - [1644] = {.lex_state = 77}, - [1645] = {.lex_state = 77}, - [1646] = {.lex_state = 77}, - [1647] = {.lex_state = 77}, - [1648] = {.lex_state = 77}, - [1649] = {.lex_state = 77}, - [1650] = {.lex_state = 79}, - [1651] = {.lex_state = 77, .external_lex_state = 4}, - [1652] = {.lex_state = 77, .external_lex_state = 4}, - [1653] = {.lex_state = 77}, - [1654] = {.lex_state = 77}, - [1655] = {.lex_state = 77}, - [1656] = {.lex_state = 77}, - [1657] = {.lex_state = 77}, - [1658] = {.lex_state = 77, .external_lex_state = 4}, - [1659] = {.lex_state = 77, .external_lex_state = 4}, - [1660] = {.lex_state = 77, .external_lex_state = 4}, - [1661] = {.lex_state = 77}, - [1662] = {.lex_state = 77, .external_lex_state = 4}, - [1663] = {.lex_state = 77}, - [1664] = {.lex_state = 78}, - [1665] = {.lex_state = 77}, - [1666] = {.lex_state = 77, .external_lex_state = 4}, - [1667] = {.lex_state = 77, .external_lex_state = 4}, - [1668] = {.lex_state = 77, .external_lex_state = 4}, - [1669] = {.lex_state = 77, .external_lex_state = 4}, - [1670] = {.lex_state = 77}, - [1671] = {.lex_state = 77, .external_lex_state = 4}, - [1672] = {.lex_state = 77}, - [1673] = {.lex_state = 77, .external_lex_state = 4}, - [1674] = {.lex_state = 77}, - [1675] = {.lex_state = 77}, - [1676] = {.lex_state = 77}, - [1677] = {.lex_state = 77, .external_lex_state = 4}, - [1678] = {.lex_state = 77, .external_lex_state = 4}, - [1679] = {.lex_state = 14}, - [1680] = {.lex_state = 77}, - [1681] = {.lex_state = 77}, - [1682] = {.lex_state = 77}, - [1683] = {.lex_state = 77, .external_lex_state = 4}, - [1684] = {.lex_state = 77, .external_lex_state = 4}, - [1685] = {.lex_state = 77}, - [1686] = {.lex_state = 77, .external_lex_state = 4}, - [1687] = {.lex_state = 77}, - [1688] = {.lex_state = 77}, - [1689] = {.lex_state = 77}, - [1690] = {.lex_state = 77, .external_lex_state = 4}, - [1691] = {.lex_state = 77, .external_lex_state = 4}, - [1692] = {.lex_state = 77, .external_lex_state = 4}, - [1693] = {.lex_state = 78}, - [1694] = {.lex_state = 77, .external_lex_state = 4}, - [1695] = {.lex_state = 77, .external_lex_state = 4}, - [1696] = {.lex_state = 77, .external_lex_state = 4}, - [1697] = {.lex_state = 77, .external_lex_state = 4}, - [1698] = {.lex_state = 77, .external_lex_state = 4}, - [1699] = {.lex_state = 77}, - [1700] = {.lex_state = 78}, - [1701] = {.lex_state = 77}, - [1702] = {.lex_state = 77}, - [1703] = {.lex_state = 77}, - [1704] = {.lex_state = 77}, - [1705] = {.lex_state = 77}, - [1706] = {.lex_state = 77}, - [1707] = {.lex_state = 77}, - [1708] = {.lex_state = 77, .external_lex_state = 4}, - [1709] = {.lex_state = 77}, - [1710] = {.lex_state = 14}, - [1711] = {.lex_state = 77, .external_lex_state = 4}, - [1712] = {.lex_state = 77, .external_lex_state = 4}, - [1713] = {.lex_state = 77, .external_lex_state = 4}, - [1714] = {.lex_state = 77, .external_lex_state = 4}, - [1715] = {.lex_state = 77, .external_lex_state = 4}, - [1716] = {.lex_state = 77, .external_lex_state = 4}, - [1717] = {.lex_state = 77, .external_lex_state = 4}, - [1718] = {.lex_state = 77}, - [1719] = {.lex_state = 77}, - [1720] = {.lex_state = 79, .external_lex_state = 7}, - [1721] = {.lex_state = 77, .external_lex_state = 4}, - [1722] = {.lex_state = 77}, - [1723] = {.lex_state = 77, .external_lex_state = 4}, - [1724] = {.lex_state = 77}, - [1725] = {.lex_state = 77, .external_lex_state = 4}, - [1726] = {.lex_state = 77}, - [1727] = {.lex_state = 77}, - [1728] = {.lex_state = 77}, - [1729] = {.lex_state = 14}, - [1730] = {.lex_state = 77}, - [1731] = {.lex_state = 77}, - [1732] = {.lex_state = 77}, - [1733] = {.lex_state = 77}, - [1734] = {.lex_state = 77}, - [1735] = {.lex_state = 77}, - [1736] = {.lex_state = 77}, - [1737] = {.lex_state = 77}, - [1738] = {.lex_state = 77}, - [1739] = {.lex_state = 77}, - [1740] = {.lex_state = 77}, - [1741] = {.lex_state = 77, .external_lex_state = 4}, - [1742] = {.lex_state = 77}, - [1743] = {.lex_state = 77}, - [1744] = {.lex_state = 77, .external_lex_state = 4}, - [1745] = {.lex_state = 77}, - [1746] = {.lex_state = 77}, - [1747] = {.lex_state = 77}, - [1748] = {.lex_state = 77}, - [1749] = {.lex_state = 77}, - [1750] = {.lex_state = 77}, - [1751] = {.lex_state = 77}, - [1752] = {.lex_state = 77}, - [1753] = {.lex_state = 77, .external_lex_state = 4}, - [1754] = {.lex_state = 77, .external_lex_state = 4}, - [1755] = {.lex_state = 77}, - [1756] = {.lex_state = 77, .external_lex_state = 4}, - [1757] = {.lex_state = 77, .external_lex_state = 4}, - [1758] = {.lex_state = 77}, - [1759] = {.lex_state = 77}, - [1760] = {.lex_state = 77}, - [1761] = {.lex_state = 77}, - [1762] = {.lex_state = 77}, - [1763] = {.lex_state = 77, .external_lex_state = 4}, - [1764] = {.lex_state = 77}, - [1765] = {.lex_state = 77}, - [1766] = {.lex_state = 77, .external_lex_state = 4}, - [1767] = {.lex_state = 77, .external_lex_state = 4}, - [1768] = {.lex_state = 77}, - [1769] = {.lex_state = 77, .external_lex_state = 4}, - [1770] = {.lex_state = 77, .external_lex_state = 4}, - [1771] = {.lex_state = 77, .external_lex_state = 4}, - [1772] = {.lex_state = 77}, - [1773] = {.lex_state = 77}, - [1774] = {.lex_state = 77}, - [1775] = {.lex_state = 77, .external_lex_state = 4}, - [1776] = {.lex_state = 77, .external_lex_state = 4}, - [1777] = {.lex_state = 77}, - [1778] = {.lex_state = 77, .external_lex_state = 4}, - [1779] = {.lex_state = 77}, - [1780] = {.lex_state = 77}, - [1781] = {.lex_state = 77}, - [1782] = {.lex_state = 77}, - [1783] = {.lex_state = 77}, - [1784] = {.lex_state = 77}, - [1785] = {.lex_state = 77}, - [1786] = {.lex_state = 77}, - [1787] = {.lex_state = 77}, - [1788] = {.lex_state = 77}, - [1789] = {.lex_state = 77}, - [1790] = {.lex_state = 77}, - [1791] = {.lex_state = 77}, - [1792] = {.lex_state = 77}, - [1793] = {.lex_state = 77}, - [1794] = {.lex_state = 77}, - [1795] = {.lex_state = 77, .external_lex_state = 4}, - [1796] = {.lex_state = 77}, - [1797] = {.lex_state = 77}, - [1798] = {.lex_state = 77, .external_lex_state = 4}, - [1799] = {.lex_state = 77}, - [1800] = {.lex_state = 77}, - [1801] = {.lex_state = 77}, - [1802] = {.lex_state = 77}, - [1803] = {.lex_state = 77}, - [1804] = {.lex_state = 77}, - [1805] = {.lex_state = 77}, - [1806] = {.lex_state = 77}, - [1807] = {.lex_state = 77}, - [1808] = {.lex_state = 77}, - [1809] = {.lex_state = 77}, - [1810] = {.lex_state = 77}, - [1811] = {.lex_state = 77}, - [1812] = {.lex_state = 77}, - [1813] = {.lex_state = 77}, - [1814] = {.lex_state = 77}, - [1815] = {.lex_state = 77}, - [1816] = {.lex_state = 77}, - [1817] = {.lex_state = 77}, - [1818] = {.lex_state = 77}, - [1819] = {.lex_state = 77}, - [1820] = {.lex_state = 77}, - [1821] = {.lex_state = 77}, - [1822] = {.lex_state = 77}, - [1823] = {.lex_state = 77}, - [1824] = {.lex_state = 77}, - [1825] = {.lex_state = 77}, - [1826] = {.lex_state = 77}, - [1827] = {.lex_state = 77}, - [1828] = {.lex_state = 77}, - [1829] = {.lex_state = 77}, - [1830] = {.lex_state = 77}, - [1831] = {.lex_state = 77}, - [1832] = {.lex_state = 77}, - [1833] = {.lex_state = 77}, - [1834] = {.lex_state = 77, .external_lex_state = 4}, - [1835] = {.lex_state = 77}, - [1836] = {.lex_state = 77, .external_lex_state = 4}, - [1837] = {.lex_state = 77}, - [1838] = {.lex_state = 77}, - [1839] = {.lex_state = 77}, - [1840] = {.lex_state = 77}, - [1841] = {.lex_state = 77}, - [1842] = {.lex_state = 77}, - [1843] = {.lex_state = 77}, - [1844] = {.lex_state = 77}, - [1845] = {.lex_state = 77, .external_lex_state = 4}, - [1846] = {.lex_state = 77}, - [1847] = {.lex_state = 78}, - [1848] = {.lex_state = 77}, - [1849] = {.lex_state = 77}, - [1850] = {.lex_state = 77}, - [1851] = {.lex_state = 77}, - [1852] = {.lex_state = 77}, - [1853] = {.lex_state = 77, .external_lex_state = 4}, - [1854] = {.lex_state = 77}, - [1855] = {.lex_state = 77}, - [1856] = {.lex_state = 77}, - [1857] = {.lex_state = 77}, - [1858] = {.lex_state = 77}, - [1859] = {.lex_state = 77}, - [1860] = {.lex_state = 77}, - [1861] = {.lex_state = 77}, - [1862] = {.lex_state = 77}, - [1863] = {.lex_state = 77}, - [1864] = {.lex_state = 77}, - [1865] = {.lex_state = 77}, - [1866] = {.lex_state = 77}, - [1867] = {.lex_state = 77}, - [1868] = {.lex_state = 77}, - [1869] = {.lex_state = 77}, - [1870] = {.lex_state = 77}, - [1871] = {.lex_state = 77}, - [1872] = {.lex_state = 77}, - [1873] = {.lex_state = 77}, - [1874] = {.lex_state = 77}, - [1875] = {.lex_state = 77}, - [1876] = {.lex_state = 77}, - [1877] = {.lex_state = 77}, - [1878] = {.lex_state = 77}, - [1879] = {.lex_state = 77}, - [1880] = {.lex_state = 77}, - [1881] = {.lex_state = 77}, - [1882] = {.lex_state = 77}, - [1883] = {.lex_state = 77}, - [1884] = {.lex_state = 77}, - [1885] = {.lex_state = 77}, - [1886] = {.lex_state = 77}, - [1887] = {.lex_state = 77}, - [1888] = {.lex_state = 77}, - [1889] = {.lex_state = 77}, - [1890] = {.lex_state = 77}, - [1891] = {.lex_state = 77}, - [1892] = {.lex_state = 77}, - [1893] = {.lex_state = 77}, - [1894] = {.lex_state = 77}, - [1895] = {.lex_state = 77}, - [1896] = {.lex_state = 77}, - [1897] = {.lex_state = 77}, - [1898] = {.lex_state = 77}, - [1899] = {.lex_state = 77}, - [1900] = {.lex_state = 77}, - [1901] = {.lex_state = 77}, - [1902] = {.lex_state = 77}, - [1903] = {.lex_state = 77}, - [1904] = {.lex_state = 77}, - [1905] = {.lex_state = 77, .external_lex_state = 4}, - [1906] = {.lex_state = 77}, - [1907] = {.lex_state = 77}, - [1908] = {.lex_state = 77}, - [1909] = {.lex_state = 77}, - [1910] = {.lex_state = 77}, - [1911] = {.lex_state = 77}, - [1912] = {.lex_state = 77}, - [1913] = {.lex_state = 77}, - [1914] = {.lex_state = 77}, - [1915] = {.lex_state = 77}, - [1916] = {.lex_state = 77}, - [1917] = {.lex_state = 77}, - [1918] = {.lex_state = 77}, - [1919] = {.lex_state = 77}, - [1920] = {.lex_state = 77}, - [1921] = {.lex_state = 77}, - [1922] = {.lex_state = 77}, - [1923] = {.lex_state = 77}, - [1924] = {.lex_state = 77}, - [1925] = {.lex_state = 77}, - [1926] = {.lex_state = 77}, - [1927] = {.lex_state = 77}, - [1928] = {.lex_state = 77}, - [1929] = {.lex_state = 77, .external_lex_state = 4}, - [1930] = {.lex_state = 77}, - [1931] = {.lex_state = 77}, - [1932] = {.lex_state = 77}, - [1933] = {.lex_state = 77}, - [1934] = {.lex_state = 77, .external_lex_state = 4}, - [1935] = {.lex_state = 77}, - [1936] = {.lex_state = 77}, - [1937] = {.lex_state = 77, .external_lex_state = 4}, - [1938] = {.lex_state = 77}, - [1939] = {.lex_state = 77}, - [1940] = {.lex_state = 77}, - [1941] = {.lex_state = 77}, - [1942] = {.lex_state = 77, .external_lex_state = 4}, - [1943] = {.lex_state = 77, .external_lex_state = 4}, - [1944] = {.lex_state = 77}, - [1945] = {.lex_state = 77}, - [1946] = {.lex_state = 77}, - [1947] = {.lex_state = 77, .external_lex_state = 4}, - [1948] = {.lex_state = 77}, - [1949] = {.lex_state = 77}, - [1950] = {.lex_state = 77}, - [1951] = {.lex_state = 77, .external_lex_state = 4}, - [1952] = {.lex_state = 77}, - [1953] = {.lex_state = 77}, - [1954] = {.lex_state = 77}, - [1955] = {.lex_state = 78}, - [1956] = {.lex_state = 77}, - [1957] = {.lex_state = 77}, - [1958] = {.lex_state = 77}, - [1959] = {.lex_state = 77}, - [1960] = {.lex_state = 78}, - [1961] = {.lex_state = 78}, - [1962] = {.lex_state = 77}, - [1963] = {.lex_state = 77}, - [1964] = {.lex_state = 77}, - [1965] = {.lex_state = 77}, - [1966] = {.lex_state = 77}, - [1967] = {.lex_state = 77}, - [1968] = {.lex_state = 77}, - [1969] = {.lex_state = 77}, - [1970] = {.lex_state = 77}, - [1971] = {.lex_state = 77, .external_lex_state = 4}, - [1972] = {.lex_state = 77, .external_lex_state = 4}, - [1973] = {.lex_state = 77}, - [1974] = {.lex_state = 77}, - [1975] = {.lex_state = 77}, - [1976] = {.lex_state = 77}, - [1977] = {.lex_state = 77}, - [1978] = {.lex_state = 77}, - [1979] = {.lex_state = 77}, - [1980] = {.lex_state = 77}, - [1981] = {.lex_state = 77}, - [1982] = {.lex_state = 77}, - [1983] = {.lex_state = 77}, - [1984] = {.lex_state = 77}, - [1985] = {.lex_state = 77}, - [1986] = {.lex_state = 77}, - [1987] = {.lex_state = 77}, - [1988] = {.lex_state = 77}, - [1989] = {.lex_state = 77}, - [1990] = {.lex_state = 77}, - [1991] = {.lex_state = 77}, - [1992] = {.lex_state = 77}, - [1993] = {.lex_state = 77}, - [1994] = {.lex_state = 77}, - [1995] = {.lex_state = 77}, - [1996] = {.lex_state = 77}, - [1997] = {.lex_state = 77}, - [1998] = {.lex_state = 77}, - [1999] = {.lex_state = 77}, - [2000] = {.lex_state = 77}, - [2001] = {.lex_state = 77}, - [2002] = {.lex_state = 77}, - [2003] = {.lex_state = 77}, - [2004] = {.lex_state = 77}, - [2005] = {.lex_state = 77}, - [2006] = {.lex_state = 77}, - [2007] = {.lex_state = 77}, - [2008] = {.lex_state = 77}, - [2009] = {.lex_state = 77}, - [2010] = {.lex_state = 77}, - [2011] = {.lex_state = 77}, - [2012] = {.lex_state = 77}, - [2013] = {.lex_state = 77}, - [2014] = {.lex_state = 77}, - [2015] = {.lex_state = 77}, - [2016] = {.lex_state = 77}, - [2017] = {.lex_state = 77}, - [2018] = {.lex_state = 77}, - [2019] = {.lex_state = 77}, - [2020] = {.lex_state = 77}, - [2021] = {.lex_state = 77}, - [2022] = {.lex_state = 77}, - [2023] = {.lex_state = 77}, - [2024] = {.lex_state = 77}, - [2025] = {.lex_state = 77}, - [2026] = {.lex_state = 77}, - [2027] = {.lex_state = 77}, - [2028] = {.lex_state = 77}, - [2029] = {.lex_state = 77}, - [2030] = {.lex_state = 77}, - [2031] = {.lex_state = 77}, - [2032] = {.lex_state = 77}, - [2033] = {.lex_state = 77}, - [2034] = {.lex_state = 77}, - [2035] = {.lex_state = 77}, - [2036] = {.lex_state = 77}, - [2037] = {.lex_state = 77}, - [2038] = {.lex_state = 77}, - [2039] = {.lex_state = 77}, - [2040] = {.lex_state = 77}, - [2041] = {.lex_state = 77}, - [2042] = {.lex_state = 77}, - [2043] = {.lex_state = 77}, - [2044] = {.lex_state = 78}, - [2045] = {.lex_state = 77, .external_lex_state = 4}, - [2046] = {.lex_state = 77}, - [2047] = {.lex_state = 78, .external_lex_state = 7}, - [2048] = {.lex_state = 77}, - [2049] = {.lex_state = 77}, - [2050] = {.lex_state = 77}, - [2051] = {.lex_state = 77}, - [2052] = {.lex_state = 77}, - [2053] = {.lex_state = 77}, - [2054] = {.lex_state = 77}, - [2055] = {.lex_state = 77}, - [2056] = {.lex_state = 77}, - [2057] = {.lex_state = 77}, - [2058] = {.lex_state = 77}, - [2059] = {.lex_state = 77}, - [2060] = {.lex_state = 77}, - [2061] = {.lex_state = 77}, - [2062] = {.lex_state = 77}, - [2063] = {.lex_state = 77}, - [2064] = {.lex_state = 77}, - [2065] = {.lex_state = 77}, - [2066] = {.lex_state = 77}, - [2067] = {.lex_state = 77}, - [2068] = {.lex_state = 77, .external_lex_state = 4}, - [2069] = {.lex_state = 77}, - [2070] = {.lex_state = 77, .external_lex_state = 4}, - [2071] = {.lex_state = 77}, - [2072] = {.lex_state = 77, .external_lex_state = 4}, - [2073] = {.lex_state = 77}, - [2074] = {.lex_state = 77}, - [2075] = {.lex_state = 77, .external_lex_state = 4}, - [2076] = {.lex_state = 77}, - [2077] = {.lex_state = 77}, - [2078] = {.lex_state = 77}, - [2079] = {.lex_state = 77}, - [2080] = {.lex_state = 77}, - [2081] = {.lex_state = 77}, - [2082] = {.lex_state = 77}, - [2083] = {.lex_state = 77}, - [2084] = {.lex_state = 77}, - [2085] = {.lex_state = 77}, - [2086] = {.lex_state = 77}, - [2087] = {.lex_state = 77}, - [2088] = {.lex_state = 77}, - [2089] = {.lex_state = 77}, - [2090] = {.lex_state = 77}, - [2091] = {.lex_state = 77}, - [2092] = {.lex_state = 77}, - [2093] = {.lex_state = 77, .external_lex_state = 4}, - [2094] = {.lex_state = 77}, - [2095] = {.lex_state = 77, .external_lex_state = 4}, - [2096] = {.lex_state = 77}, - [2097] = {.lex_state = 77}, - [2098] = {.lex_state = 77}, - [2099] = {.lex_state = 77}, - [2100] = {.lex_state = 77}, - [2101] = {.lex_state = 77}, - [2102] = {.lex_state = 77}, - [2103] = {.lex_state = 77}, - [2104] = {.lex_state = 77}, - [2105] = {.lex_state = 77}, - [2106] = {.lex_state = 77, .external_lex_state = 4}, - [2107] = {.lex_state = 77}, - [2108] = {.lex_state = 77}, - [2109] = {.lex_state = 77, .external_lex_state = 4}, - [2110] = {.lex_state = 77, .external_lex_state = 4}, - [2111] = {.lex_state = 77, .external_lex_state = 4}, - [2112] = {.lex_state = 77}, - [2113] = {.lex_state = 77}, - [2114] = {.lex_state = 77}, - [2115] = {.lex_state = 77}, - [2116] = {.lex_state = 77, .external_lex_state = 4}, - [2117] = {.lex_state = 77}, - [2118] = {.lex_state = 77}, - [2119] = {.lex_state = 77}, - [2120] = {.lex_state = 77}, - [2121] = {.lex_state = 77}, - [2122] = {.lex_state = 77}, - [2123] = {.lex_state = 77}, - [2124] = {.lex_state = 77}, - [2125] = {.lex_state = 77}, - [2126] = {.lex_state = 77, .external_lex_state = 4}, - [2127] = {.lex_state = 77}, - [2128] = {.lex_state = 77, .external_lex_state = 4}, - [2129] = {.lex_state = 77}, - [2130] = {.lex_state = 77}, - [2131] = {.lex_state = 77, .external_lex_state = 4}, - [2132] = {.lex_state = 77}, - [2133] = {.lex_state = 77, .external_lex_state = 4}, - [2134] = {.lex_state = 77}, - [2135] = {.lex_state = 77}, - [2136] = {.lex_state = 77}, - [2137] = {.lex_state = 77}, - [2138] = {.lex_state = 77}, - [2139] = {.lex_state = 77}, - [2140] = {.lex_state = 77}, - [2141] = {.lex_state = 77}, - [2142] = {.lex_state = 77}, - [2143] = {.lex_state = 77}, - [2144] = {.lex_state = 77}, - [2145] = {.lex_state = 77, .external_lex_state = 4}, - [2146] = {.lex_state = 77, .external_lex_state = 4}, - [2147] = {.lex_state = 77}, - [2148] = {.lex_state = 77}, - [2149] = {.lex_state = 77}, - [2150] = {.lex_state = 77}, - [2151] = {.lex_state = 77}, - [2152] = {.lex_state = 77}, - [2153] = {.lex_state = 77}, - [2154] = {.lex_state = 77}, - [2155] = {.lex_state = 77}, - [2156] = {.lex_state = 77}, - [2157] = {.lex_state = 77}, - [2158] = {.lex_state = 77, .external_lex_state = 4}, - [2159] = {.lex_state = 77}, - [2160] = {.lex_state = 77}, - [2161] = {.lex_state = 77}, - [2162] = {.lex_state = 77}, - [2163] = {.lex_state = 77}, - [2164] = {.lex_state = 77}, - [2165] = {.lex_state = 77}, - [2166] = {.lex_state = 77}, - [2167] = {.lex_state = 77}, - [2168] = {.lex_state = 77}, - [2169] = {.lex_state = 77}, - [2170] = {.lex_state = 77}, - [2171] = {.lex_state = 77}, - [2172] = {.lex_state = 77, .external_lex_state = 4}, - [2173] = {.lex_state = 77}, - [2174] = {.lex_state = 77}, - [2175] = {.lex_state = 77}, - [2176] = {.lex_state = 77}, - [2177] = {.lex_state = 77, .external_lex_state = 4}, - [2178] = {.lex_state = 77, .external_lex_state = 4}, - [2179] = {.lex_state = 77, .external_lex_state = 4}, - [2180] = {.lex_state = 77}, - [2181] = {.lex_state = 77, .external_lex_state = 4}, - [2182] = {.lex_state = 77, .external_lex_state = 4}, - [2183] = {.lex_state = 77}, - [2184] = {.lex_state = 77}, - [2185] = {.lex_state = 77, .external_lex_state = 4}, - [2186] = {.lex_state = 77}, - [2187] = {.lex_state = 77}, - [2188] = {.lex_state = 77}, - [2189] = {.lex_state = 77}, - [2190] = {.lex_state = 77}, - [2191] = {.lex_state = 77}, - [2192] = {.lex_state = 77}, - [2193] = {.lex_state = 77}, - [2194] = {.lex_state = 77}, - [2195] = {.lex_state = 77}, - [2196] = {.lex_state = 77}, - [2197] = {.lex_state = 77}, - [2198] = {.lex_state = 77}, - [2199] = {.lex_state = 77, .external_lex_state = 4}, - [2200] = {.lex_state = 77}, - [2201] = {.lex_state = 77}, - [2202] = {.lex_state = 77}, - [2203] = {.lex_state = 77}, - [2204] = {.lex_state = 77}, - [2205] = {.lex_state = 77}, - [2206] = {.lex_state = 77}, - [2207] = {.lex_state = 77}, - [2208] = {.lex_state = 77}, - [2209] = {.lex_state = 77}, - [2210] = {.lex_state = 77}, - [2211] = {.lex_state = 77}, - [2212] = {.lex_state = 77}, - [2213] = {.lex_state = 77}, - [2214] = {.lex_state = 77}, - [2215] = {.lex_state = 77}, - [2216] = {.lex_state = 77}, - [2217] = {.lex_state = 77}, - [2218] = {.lex_state = 77}, - [2219] = {.lex_state = 77, .external_lex_state = 4}, - [2220] = {.lex_state = 77, .external_lex_state = 4}, - [2221] = {.lex_state = 77, .external_lex_state = 4}, - [2222] = {.lex_state = 77, .external_lex_state = 4}, - [2223] = {.lex_state = 77, .external_lex_state = 4}, - [2224] = {.lex_state = 77}, - [2225] = {.lex_state = 77, .external_lex_state = 4}, - [2226] = {.lex_state = 77}, - [2227] = {.lex_state = 77}, - [2228] = {.lex_state = 77, .external_lex_state = 4}, - [2229] = {.lex_state = 77}, - [2230] = {.lex_state = 77}, - [2231] = {.lex_state = 77}, - [2232] = {.lex_state = 77, .external_lex_state = 4}, - [2233] = {.lex_state = 77}, - [2234] = {.lex_state = 77}, - [2235] = {.lex_state = 77}, - [2236] = {.lex_state = 77, .external_lex_state = 4}, - [2237] = {.lex_state = 77, .external_lex_state = 4}, - [2238] = {.lex_state = 77, .external_lex_state = 4}, - [2239] = {.lex_state = 77}, - [2240] = {.lex_state = 77}, - [2241] = {.lex_state = 77, .external_lex_state = 4}, - [2242] = {.lex_state = 77}, - [2243] = {.lex_state = 77}, - [2244] = {.lex_state = 77}, - [2245] = {.lex_state = 77}, - [2246] = {.lex_state = 77}, - [2247] = {.lex_state = 77}, - [2248] = {.lex_state = 77}, - [2249] = {.lex_state = 77}, - [2250] = {.lex_state = 77}, - [2251] = {.lex_state = 77, .external_lex_state = 4}, - [2252] = {.lex_state = 77}, - [2253] = {.lex_state = 77}, - [2254] = {.lex_state = 77}, - [2255] = {.lex_state = 77}, - [2256] = {.lex_state = 77, .external_lex_state = 4}, - [2257] = {.lex_state = 77}, - [2258] = {.lex_state = 77}, - [2259] = {.lex_state = 77}, - [2260] = {.lex_state = 77}, - [2261] = {.lex_state = 77}, - [2262] = {.lex_state = 77}, - [2263] = {.lex_state = 77}, - [2264] = {.lex_state = 77}, - [2265] = {.lex_state = 77}, - [2266] = {.lex_state = 77, .external_lex_state = 4}, - [2267] = {.lex_state = 77}, - [2268] = {.lex_state = 77, .external_lex_state = 4}, - [2269] = {.lex_state = 77}, - [2270] = {.lex_state = 77}, - [2271] = {.lex_state = 77, .external_lex_state = 4}, - [2272] = {.lex_state = 77, .external_lex_state = 4}, - [2273] = {.lex_state = 77, .external_lex_state = 4}, - [2274] = {.lex_state = 77}, - [2275] = {.lex_state = 77}, - [2276] = {.lex_state = 77}, - [2277] = {.lex_state = 77, .external_lex_state = 4}, - [2278] = {.lex_state = 77, .external_lex_state = 4}, - [2279] = {.lex_state = 77}, - [2280] = {.lex_state = 77, .external_lex_state = 4}, - [2281] = {.lex_state = 77, .external_lex_state = 4}, - [2282] = {.lex_state = 77}, - [2283] = {.lex_state = 77}, - [2284] = {.lex_state = 77, .external_lex_state = 4}, - [2285] = {.lex_state = 77}, - [2286] = {.lex_state = 77}, - [2287] = {.lex_state = 77}, - [2288] = {.lex_state = 77}, - [2289] = {.lex_state = 77, .external_lex_state = 4}, - [2290] = {.lex_state = 77}, - [2291] = {.lex_state = 77, .external_lex_state = 4}, - [2292] = {.lex_state = 77}, - [2293] = {.lex_state = 77}, - [2294] = {.lex_state = 77, .external_lex_state = 4}, - [2295] = {.lex_state = 77, .external_lex_state = 4}, - [2296] = {.lex_state = 77}, - [2297] = {.lex_state = 77, .external_lex_state = 4}, - [2298] = {.lex_state = 77}, - [2299] = {.lex_state = 77}, - [2300] = {.lex_state = 77}, - [2301] = {.lex_state = 77}, - [2302] = {.lex_state = 77}, - [2303] = {.lex_state = 77}, - [2304] = {.lex_state = 77}, - [2305] = {.lex_state = 77}, - [2306] = {.lex_state = 77}, - [2307] = {.lex_state = 77}, - [2308] = {.lex_state = 77}, - [2309] = {.lex_state = 77}, - [2310] = {.lex_state = 77}, - [2311] = {.lex_state = 77}, - [2312] = {.lex_state = 77}, - [2313] = {.lex_state = 77}, - [2314] = {.lex_state = 77}, - [2315] = {.lex_state = 77}, - [2316] = {.lex_state = 77}, - [2317] = {.lex_state = 77}, - [2318] = {.lex_state = 77}, - [2319] = {.lex_state = 77}, - [2320] = {.lex_state = 77}, - [2321] = {.lex_state = 77}, - [2322] = {.lex_state = 77}, - [2323] = {.lex_state = 77}, - [2324] = {.lex_state = 77}, - [2325] = {.lex_state = 77}, - [2326] = {.lex_state = 77}, - [2327] = {.lex_state = 77}, - [2328] = {.lex_state = 77}, - [2329] = {.lex_state = 77}, - [2330] = {.lex_state = 77}, - [2331] = {.lex_state = 77}, - [2332] = {.lex_state = 77}, - [2333] = {.lex_state = 77}, - [2334] = {.lex_state = 77}, - [2335] = {.lex_state = 77}, - [2336] = {.lex_state = 77}, - [2337] = {.lex_state = 77}, - [2338] = {.lex_state = 77}, - [2339] = {.lex_state = 77}, - [2340] = {.lex_state = 77}, - [2341] = {.lex_state = 77}, - [2342] = {.lex_state = 77}, - [2343] = {.lex_state = 77}, - [2344] = {.lex_state = 77}, - [2345] = {.lex_state = 77}, - [2346] = {.lex_state = 77}, - [2347] = {.lex_state = 77}, - [2348] = {.lex_state = 77}, - [2349] = {.lex_state = 77}, - [2350] = {.lex_state = 77}, - [2351] = {.lex_state = 77}, - [2352] = {.lex_state = 77}, - [2353] = {.lex_state = 77}, - [2354] = {.lex_state = 77}, - [2355] = {.lex_state = 77}, - [2356] = {.lex_state = 77}, - [2357] = {.lex_state = 77}, - [2358] = {.lex_state = 77}, - [2359] = {.lex_state = 77}, - [2360] = {.lex_state = 77}, - [2361] = {.lex_state = 77}, - [2362] = {.lex_state = 77}, - [2363] = {.lex_state = 77}, - [2364] = {.lex_state = 77}, - [2365] = {.lex_state = 77}, - [2366] = {.lex_state = 77}, - [2367] = {.lex_state = 77}, - [2368] = {.lex_state = 77}, - [2369] = {.lex_state = 77}, - [2370] = {.lex_state = 77}, - [2371] = {.lex_state = 77}, - [2372] = {.lex_state = 77}, - [2373] = {.lex_state = 77}, - [2374] = {.lex_state = 77}, - [2375] = {.lex_state = 77}, - [2376] = {.lex_state = 77}, - [2377] = {.lex_state = 77}, - [2378] = {.lex_state = 77}, - [2379] = {.lex_state = 77}, - [2380] = {.lex_state = 77}, - [2381] = {.lex_state = 77}, - [2382] = {.lex_state = 77}, - [2383] = {.lex_state = 77}, - [2384] = {.lex_state = 77}, - [2385] = {.lex_state = 77}, - [2386] = {.lex_state = 77}, - [2387] = {.lex_state = 77}, - [2388] = {.lex_state = 77}, - [2389] = {.lex_state = 77}, - [2390] = {.lex_state = 77}, - [2391] = {.lex_state = 77}, - [2392] = {.lex_state = 77}, - [2393] = {.lex_state = 77}, - [2394] = {.lex_state = 77}, - [2395] = {.lex_state = 77}, - [2396] = {.lex_state = 77}, - [2397] = {.lex_state = 77}, - [2398] = {.lex_state = 77}, - [2399] = {.lex_state = 77}, - [2400] = {.lex_state = 77}, - [2401] = {.lex_state = 77}, - [2402] = {.lex_state = 77}, - [2403] = {.lex_state = 77}, - [2404] = {.lex_state = 184}, - [2405] = {.lex_state = 77}, - [2406] = {.lex_state = 77}, - [2407] = {.lex_state = 77}, - [2408] = {.lex_state = 77}, - [2409] = {.lex_state = 77}, - [2410] = {.lex_state = 77}, - [2411] = {.lex_state = 77}, - [2412] = {.lex_state = 77}, - [2413] = {.lex_state = 77}, - [2414] = {.lex_state = 77}, - [2415] = {.lex_state = 77}, - [2416] = {.lex_state = 77}, - [2417] = {.lex_state = 77}, - [2418] = {.lex_state = 77}, - [2419] = {.lex_state = 77}, - [2420] = {.lex_state = 77}, - [2421] = {.lex_state = 77}, - [2422] = {.lex_state = 77}, - [2423] = {.lex_state = 77}, - [2424] = {.lex_state = 77}, - [2425] = {.lex_state = 77}, - [2426] = {.lex_state = 77}, - [2427] = {.lex_state = 77}, - [2428] = {.lex_state = 77}, - [2429] = {.lex_state = 77}, - [2430] = {.lex_state = 77}, - [2431] = {.lex_state = 77}, - [2432] = {.lex_state = 77}, - [2433] = {.lex_state = 77}, - [2434] = {.lex_state = 77}, - [2435] = {.lex_state = 77}, - [2436] = {.lex_state = 77}, - [2437] = {.lex_state = 77}, - [2438] = {.lex_state = 77}, - [2439] = {.lex_state = 77}, - [2440] = {.lex_state = 77}, - [2441] = {.lex_state = 77}, - [2442] = {.lex_state = 77}, - [2443] = {.lex_state = 77}, - [2444] = {.lex_state = 77}, - [2445] = {.lex_state = 77}, - [2446] = {.lex_state = 77}, - [2447] = {.lex_state = 77}, - [2448] = {.lex_state = 77}, - [2449] = {.lex_state = 77}, - [2450] = {.lex_state = 77}, - [2451] = {.lex_state = 77}, - [2452] = {.lex_state = 77}, - [2453] = {.lex_state = 77}, - [2454] = {.lex_state = 77}, - [2455] = {.lex_state = 77}, - [2456] = {.lex_state = 77}, - [2457] = {.lex_state = 77}, - [2458] = {.lex_state = 77}, - [2459] = {.lex_state = 77}, - [2460] = {.lex_state = 77}, - [2461] = {.lex_state = 77}, - [2462] = {.lex_state = 77}, - [2463] = {.lex_state = 77}, - [2464] = {.lex_state = 77}, - [2465] = {.lex_state = 77}, - [2466] = {.lex_state = 77}, - [2467] = {.lex_state = 77}, - [2468] = {.lex_state = 77}, - [2469] = {.lex_state = 77}, - [2470] = {.lex_state = 77}, - [2471] = {.lex_state = 77}, - [2472] = {.lex_state = 77}, - [2473] = {.lex_state = 77}, - [2474] = {.lex_state = 77}, - [2475] = {.lex_state = 77}, - [2476] = {.lex_state = 77}, - [2477] = {.lex_state = 77}, - [2478] = {.lex_state = 77}, - [2479] = {.lex_state = 77}, - [2480] = {.lex_state = 77}, - [2481] = {.lex_state = 77}, - [2482] = {.lex_state = 77}, - [2483] = {.lex_state = 77}, - [2484] = {.lex_state = 77}, - [2485] = {.lex_state = 77}, - [2486] = {.lex_state = 77}, - [2487] = {.lex_state = 77}, - [2488] = {.lex_state = 77}, - [2489] = {.lex_state = 77}, - [2490] = {.lex_state = 77}, - [2491] = {.lex_state = 77}, - [2492] = {.lex_state = 77}, - [2493] = {.lex_state = 77}, - [2494] = {.lex_state = 77}, - [2495] = {.lex_state = 77}, - [2496] = {.lex_state = 77}, - [2497] = {.lex_state = 77}, - [2498] = {.lex_state = 77}, - [2499] = {.lex_state = 77}, - [2500] = {.lex_state = 77}, - [2501] = {.lex_state = 77}, - [2502] = {.lex_state = 77}, - [2503] = {.lex_state = 77}, - [2504] = {.lex_state = 77}, - [2505] = {.lex_state = 77}, - [2506] = {.lex_state = 77}, - [2507] = {.lex_state = 184}, - [2508] = {.lex_state = 77}, - [2509] = {.lex_state = 77}, - [2510] = {.lex_state = 77}, - [2511] = {.lex_state = 77}, - [2512] = {.lex_state = 77}, - [2513] = {.lex_state = 77}, - [2514] = {.lex_state = 77}, - [2515] = {.lex_state = 77}, - [2516] = {.lex_state = 77}, - [2517] = {.lex_state = 77}, - [2518] = {.lex_state = 77}, - [2519] = {.lex_state = 77}, - [2520] = {.lex_state = 77}, - [2521] = {.lex_state = 77}, - [2522] = {.lex_state = 77}, - [2523] = {.lex_state = 77}, - [2524] = {(TSStateId)(-1)}, - [2525] = {(TSStateId)(-1)}, -}; - -enum { - ts_external_token__automatic_semicolon = 0, - ts_external_token_heredoc = 1, - ts_external_token_encapsed_string_chars = 2, - ts_external_token_encapsed_string_chars_after_variable = 3, - ts_external_token__eof = 4, - ts_external_token_sentinel_error = 5, -}; - -static const 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_encapsed_string_chars] = sym_encapsed_string_chars, - [ts_external_token_encapsed_string_chars_after_variable] = sym_encapsed_string_chars_after_variable, - [ts_external_token__eof] = sym__eof, - [ts_external_token_sentinel_error] = sym_sentinel_error, -}; - -static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token_heredoc] = true, - [ts_external_token_encapsed_string_chars] = true, - [ts_external_token_encapsed_string_chars_after_variable] = true, - [ts_external_token__eof] = true, - [ts_external_token_sentinel_error] = 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_encapsed_string_chars] = true, - }, - [6] = { - [ts_external_token_encapsed_string_chars] = true, - [ts_external_token_encapsed_string_chars_after_variable] = true, - }, - [7] = { - [ts_external_token__eof] = true, - }, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [sym_text_interpolation] = STATE(0), - [ts_builtin_sym_end] = ACTIONS(1), - [sym_name] = ACTIONS(1), - [sym_php_tag] = ACTIONS(1), - [anon_sym_QMARK_GT] = ACTIONS(3), - [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), - [aux_sym_global_declaration_token1] = ACTIONS(1), - [aux_sym_namespace_definition_token1] = ACTIONS(1), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1), - [anon_sym_BSLASH] = ACTIONS(1), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [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), - [aux_sym_enum_case_token1] = ACTIONS(1), - [aux_sym_class_declaration_token1] = ACTIONS(1), - [aux_sym_final_modifier_token1] = ACTIONS(1), - [aux_sym_abstract_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), - [aux_sym_arrow_function_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), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_array] = 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_mixed] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [anon_sym_null] = 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_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), - [sym_float] = ACTIONS(1), - [aux_sym_try_statement_token1] = ACTIONS(1), - [aux_sym_catch_clause_token1] = ACTIONS(1), - [aux_sym_finally_clause_token1] = ACTIONS(1), - [aux_sym_goto_statement_token1] = ACTIONS(1), - [aux_sym_continue_statement_token1] = ACTIONS(1), - [aux_sym_break_statement_token1] = ACTIONS(1), - [sym_integer] = ACTIONS(1), - [aux_sym_return_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), - [aux_sym_for_statement_token1] = ACTIONS(1), - [aux_sym_for_statement_token2] = ACTIONS(1), - [aux_sym_foreach_statement_token1] = ACTIONS(1), - [aux_sym_foreach_statement_token2] = 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), - [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), - [aux_sym_clone_expression_token1] = ACTIONS(1), - [anon_sym_COLON_COLON] = ACTIONS(1), - [aux_sym_print_intrinsic_token1] = ACTIONS(1), - [aux_sym_object_creation_expression_token1] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [sym_shell_command_expression] = ACTIONS(1), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), - [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_QMARK_DASH_GT] = ACTIONS(1), - [aux_sym__list_destructing_token1] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_self] = ACTIONS(1), - [anon_sym_parent] = ACTIONS(1), - [anon_sym_POUND_LBRACK] = ACTIONS(1), - [aux_sym_encapsed_string_token1] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [aux_sym_string_token1] = ACTIONS(1), - [sym_boolean] = ACTIONS(1), - [sym_null] = ACTIONS(1), - [anon_sym_DOLLAR] = 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), - [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_CARET] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [aux_sym_include_expression_token1] = ACTIONS(1), - [aux_sym_include_once_expression_token1] = ACTIONS(1), - [aux_sym_require_expression_token1] = ACTIONS(1), - [aux_sym_require_once_expression_token1] = ACTIONS(1), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1), - [sym_heredoc] = ACTIONS(1), - [sym_encapsed_string_chars] = ACTIONS(1), - [sym_encapsed_string_chars_after_variable] = ACTIONS(1), - [sym__eof] = ACTIONS(1), - [sym_sentinel_error] = ACTIONS(1), - }, - [1] = { - [sym_program] = STATE(2518), - [sym_text_interpolation] = STATE(1), - [sym_text] = STATE(2044), - [aux_sym_text_repeat1] = STATE(1580), - [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(5), - }, - [2] = { - [sym_text_interpolation] = STATE(2), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(15), - [sym_name] = ACTIONS(17), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(20), - [aux_sym_function_static_declaration_token1] = ACTIONS(23), - [aux_sym_global_declaration_token1] = ACTIONS(26), - [aux_sym_namespace_definition_token1] = ACTIONS(29), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(32), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(35), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(38), - [anon_sym_BSLASH] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(44), - [anon_sym_RBRACE] = ACTIONS(15), - [aux_sym_trait_declaration_token1] = ACTIONS(47), - [aux_sym_interface_declaration_token1] = ACTIONS(50), - [aux_sym_enum_declaration_token1] = ACTIONS(53), - [aux_sym_enum_case_token1] = ACTIONS(56), - [aux_sym_class_declaration_token1] = ACTIONS(58), - [aux_sym_final_modifier_token1] = ACTIONS(61), - [aux_sym_abstract_modifier_token1] = ACTIONS(64), - [aux_sym_visibility_modifier_token1] = ACTIONS(67), - [aux_sym_visibility_modifier_token2] = ACTIONS(67), - [aux_sym_visibility_modifier_token3] = ACTIONS(67), - [aux_sym_arrow_function_token1] = ACTIONS(70), - [anon_sym_LPAREN] = ACTIONS(73), - [aux_sym_cast_type_token1] = ACTIONS(76), - [aux_sym_echo_statement_token1] = ACTIONS(79), - [anon_sym_unset] = ACTIONS(82), - [aux_sym_declare_statement_token1] = ACTIONS(85), - [aux_sym_declare_statement_token2] = ACTIONS(56), - [sym_float] = ACTIONS(88), - [aux_sym_try_statement_token1] = ACTIONS(91), - [aux_sym_goto_statement_token1] = ACTIONS(94), - [aux_sym_continue_statement_token1] = ACTIONS(97), - [aux_sym_break_statement_token1] = ACTIONS(100), - [sym_integer] = ACTIONS(88), - [aux_sym_return_statement_token1] = ACTIONS(103), - [aux_sym_throw_expression_token1] = ACTIONS(106), - [aux_sym_while_statement_token1] = ACTIONS(109), - [aux_sym_while_statement_token2] = ACTIONS(56), - [aux_sym_do_statement_token1] = ACTIONS(112), - [aux_sym_for_statement_token1] = ACTIONS(115), - [aux_sym_for_statement_token2] = ACTIONS(56), - [aux_sym_foreach_statement_token1] = ACTIONS(118), - [aux_sym_foreach_statement_token2] = ACTIONS(56), - [aux_sym_if_statement_token1] = ACTIONS(121), - [aux_sym_if_statement_token2] = ACTIONS(56), - [aux_sym_match_expression_token1] = ACTIONS(124), - [aux_sym_match_default_expression_token1] = ACTIONS(56), - [aux_sym_switch_statement_token1] = ACTIONS(127), - [aux_sym_switch_block_token1] = ACTIONS(56), - [anon_sym_AT] = ACTIONS(130), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_TILDE] = ACTIONS(136), - [anon_sym_BANG] = ACTIONS(136), - [aux_sym_clone_expression_token1] = ACTIONS(139), - [aux_sym_print_intrinsic_token1] = ACTIONS(142), - [aux_sym_object_creation_expression_token1] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_DASH_DASH] = ACTIONS(148), - [sym_shell_command_expression] = ACTIONS(151), - [aux_sym__list_destructing_token1] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_self] = ACTIONS(160), - [anon_sym_parent] = ACTIONS(160), - [anon_sym_POUND_LBRACK] = ACTIONS(163), - [aux_sym_encapsed_string_token1] = ACTIONS(166), - [anon_sym_DQUOTE] = ACTIONS(166), - [anon_sym_SQUOTE] = ACTIONS(169), - [aux_sym_string_token1] = ACTIONS(169), - [sym_boolean] = ACTIONS(88), - [sym_null] = ACTIONS(88), - [anon_sym_DOLLAR] = ACTIONS(172), - [aux_sym_yield_expression_token1] = ACTIONS(175), - [aux_sym_include_expression_token1] = ACTIONS(178), - [aux_sym_include_once_expression_token1] = ACTIONS(181), - [aux_sym_require_expression_token1] = ACTIONS(184), - [aux_sym_require_once_expression_token1] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(190), - }, - [3] = { - [sym_text_interpolation] = STATE(3), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(213), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_enum_case_token1] = ACTIONS(221), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_match_default_expression_token1] = ACTIONS(221), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [aux_sym_switch_block_token1] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [4] = { - [sym_text_interpolation] = STATE(4), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_enum_case_token1] = ACTIONS(315), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_match_default_expression_token1] = ACTIONS(315), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [aux_sym_switch_block_token1] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [5] = { - [sym_text_interpolation] = STATE(5), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(3), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(317), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_enum_case_token1] = ACTIONS(319), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_match_default_expression_token1] = ACTIONS(319), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [aux_sym_switch_block_token1] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [6] = { - [sym_text_interpolation] = STATE(6), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_enum_case_token1] = ACTIONS(323), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_match_default_expression_token1] = ACTIONS(323), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [aux_sym_switch_block_token1] = ACTIONS(323), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [7] = { - [sym_text_interpolation] = STATE(7), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_if_statement_token2] = ACTIONS(335), - [aux_sym_else_if_clause_token1] = ACTIONS(335), - [aux_sym_else_clause_token1] = ACTIONS(335), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [8] = { - [sym_text_interpolation] = STATE(8), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_while_statement_token2] = ACTIONS(337), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_foreach_statement_token2] = ACTIONS(337), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_if_statement_token2] = ACTIONS(337), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [9] = { - [sym_text_interpolation] = STATE(9), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_while_statement_token2] = ACTIONS(335), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_foreach_statement_token2] = ACTIONS(335), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_if_statement_token2] = ACTIONS(335), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [10] = { - [sym_text_interpolation] = STATE(10), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_if_statement_token2] = ACTIONS(337), - [aux_sym_else_if_clause_token1] = ACTIONS(337), - [aux_sym_else_clause_token1] = ACTIONS(337), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [11] = { - [sym_text_interpolation] = STATE(11), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(17), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(20), - [aux_sym_function_static_declaration_token1] = ACTIONS(23), - [aux_sym_global_declaration_token1] = ACTIONS(26), - [aux_sym_namespace_definition_token1] = ACTIONS(29), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(32), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(35), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(38), - [anon_sym_BSLASH] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(44), - [aux_sym_trait_declaration_token1] = ACTIONS(47), - [aux_sym_interface_declaration_token1] = ACTIONS(50), - [aux_sym_enum_declaration_token1] = ACTIONS(53), - [aux_sym_class_declaration_token1] = ACTIONS(58), - [aux_sym_final_modifier_token1] = ACTIONS(61), - [aux_sym_abstract_modifier_token1] = ACTIONS(64), - [aux_sym_visibility_modifier_token1] = ACTIONS(67), - [aux_sym_visibility_modifier_token2] = ACTIONS(67), - [aux_sym_visibility_modifier_token3] = ACTIONS(67), - [aux_sym_arrow_function_token1] = ACTIONS(70), - [anon_sym_LPAREN] = ACTIONS(73), - [aux_sym_cast_type_token1] = ACTIONS(76), - [aux_sym_echo_statement_token1] = ACTIONS(79), - [anon_sym_unset] = ACTIONS(82), - [aux_sym_declare_statement_token1] = ACTIONS(339), - [sym_float] = ACTIONS(88), - [aux_sym_try_statement_token1] = ACTIONS(91), - [aux_sym_goto_statement_token1] = ACTIONS(94), - [aux_sym_continue_statement_token1] = ACTIONS(97), - [aux_sym_break_statement_token1] = ACTIONS(100), - [sym_integer] = ACTIONS(88), - [aux_sym_return_statement_token1] = ACTIONS(103), - [aux_sym_throw_expression_token1] = ACTIONS(106), - [aux_sym_while_statement_token1] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(112), - [aux_sym_for_statement_token1] = ACTIONS(345), - [aux_sym_foreach_statement_token1] = ACTIONS(348), - [aux_sym_if_statement_token1] = ACTIONS(351), - [aux_sym_if_statement_token2] = ACTIONS(56), - [aux_sym_else_if_clause_token1] = ACTIONS(56), - [aux_sym_else_clause_token1] = ACTIONS(56), - [aux_sym_match_expression_token1] = ACTIONS(124), - [aux_sym_switch_statement_token1] = ACTIONS(127), - [anon_sym_AT] = ACTIONS(130), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_TILDE] = ACTIONS(136), - [anon_sym_BANG] = ACTIONS(136), - [aux_sym_clone_expression_token1] = ACTIONS(139), - [aux_sym_print_intrinsic_token1] = ACTIONS(142), - [aux_sym_object_creation_expression_token1] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(148), - [anon_sym_DASH_DASH] = ACTIONS(148), - [sym_shell_command_expression] = ACTIONS(151), - [aux_sym__list_destructing_token1] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_self] = ACTIONS(160), - [anon_sym_parent] = ACTIONS(160), - [anon_sym_POUND_LBRACK] = ACTIONS(163), - [aux_sym_encapsed_string_token1] = ACTIONS(166), - [anon_sym_DQUOTE] = ACTIONS(166), - [anon_sym_SQUOTE] = ACTIONS(169), - [aux_sym_string_token1] = ACTIONS(169), - [sym_boolean] = ACTIONS(88), - [sym_null] = ACTIONS(88), - [anon_sym_DOLLAR] = ACTIONS(172), - [aux_sym_yield_expression_token1] = ACTIONS(175), - [aux_sym_include_expression_token1] = ACTIONS(178), - [aux_sym_include_once_expression_token1] = ACTIONS(181), - [aux_sym_require_expression_token1] = ACTIONS(184), - [aux_sym_require_once_expression_token1] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(190), - }, - [12] = { - [sym_text_interpolation] = STATE(12), - [sym_empty_statement] = STATE(1999), - [sym_function_static_declaration] = STATE(1999), - [sym_global_declaration] = STATE(1999), - [sym_namespace_definition] = STATE(1999), - [sym_namespace_use_declaration] = STATE(1999), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(1999), - [sym_interface_declaration] = STATE(1999), - [sym_enum_declaration] = STATE(1999), - [sym_class_declaration] = STATE(1999), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(1999), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(1999), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1999), - [sym_unset_statement] = STATE(1999), - [sym_declare_statement] = STATE(1999), - [sym_try_statement] = STATE(1999), - [sym_goto_statement] = STATE(1999), - [sym_continue_statement] = STATE(1999), - [sym_break_statement] = STATE(1999), - [sym_return_statement] = STATE(1999), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1999), - [sym_do_statement] = STATE(1999), - [sym_for_statement] = STATE(1999), - [sym_foreach_statement] = STATE(1999), - [sym_if_statement] = STATE(1999), - [sym_colon_block] = STATE(2451), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(1999), - [sym_compound_statement] = STATE(1999), - [sym_named_label_statement] = STATE(1999), - [sym_expression_statement] = STATE(1999), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(356), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(376), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(384), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(396), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(400), - [aux_sym_foreach_statement_token1] = ACTIONS(402), - [aux_sym_if_statement_token1] = ACTIONS(404), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(408), - [sym_heredoc] = ACTIONS(311), - }, - [13] = { - [sym_text_interpolation] = STATE(13), - [sym_empty_statement] = STATE(1999), - [sym_function_static_declaration] = STATE(1999), - [sym_global_declaration] = STATE(1999), - [sym_namespace_definition] = STATE(1999), - [sym_namespace_use_declaration] = STATE(1999), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(1999), - [sym_interface_declaration] = STATE(1999), - [sym_enum_declaration] = STATE(1999), - [sym_class_declaration] = STATE(1999), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(1999), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(1999), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1999), - [sym_unset_statement] = STATE(1999), - [sym_declare_statement] = STATE(1999), - [sym_try_statement] = STATE(1999), - [sym_goto_statement] = STATE(1999), - [sym_continue_statement] = STATE(1999), - [sym_break_statement] = STATE(1999), - [sym_return_statement] = STATE(1999), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1999), - [sym_do_statement] = STATE(1999), - [sym_for_statement] = STATE(1999), - [sym_foreach_statement] = STATE(1999), - [sym_if_statement] = STATE(1999), - [sym_colon_block] = STATE(2451), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(1999), - [sym_compound_statement] = STATE(1999), - [sym_named_label_statement] = STATE(1999), - [sym_expression_statement] = STATE(1999), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(356), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(376), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(408), - [sym_heredoc] = ACTIONS(311), - }, - [14] = { - [sym_text_interpolation] = STATE(14), - [sym_empty_statement] = STATE(575), - [sym_function_static_declaration] = STATE(575), - [sym_global_declaration] = STATE(575), - [sym_namespace_definition] = STATE(575), - [sym_namespace_use_declaration] = STATE(575), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(575), - [sym_interface_declaration] = STATE(575), - [sym_enum_declaration] = STATE(575), - [sym_class_declaration] = STATE(575), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(575), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(575), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(575), - [sym_unset_statement] = STATE(575), - [sym_declare_statement] = STATE(575), - [sym_try_statement] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_continue_statement] = STATE(575), - [sym_break_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_foreach_statement] = STATE(575), - [sym_if_statement] = STATE(575), - [sym_colon_block] = STATE(2318), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(575), - [sym_compound_statement] = STATE(575), - [sym_named_label_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(420), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(376), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(422), - [sym_heredoc] = ACTIONS(311), - }, - [15] = { - [sym_text_interpolation] = STATE(15), - [sym_empty_statement] = STATE(575), - [sym_function_static_declaration] = STATE(575), - [sym_global_declaration] = STATE(575), - [sym_namespace_definition] = STATE(575), - [sym_namespace_use_declaration] = STATE(575), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(575), - [sym_interface_declaration] = STATE(575), - [sym_enum_declaration] = STATE(575), - [sym_class_declaration] = STATE(575), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(575), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(575), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(575), - [sym_unset_statement] = STATE(575), - [sym_declare_statement] = STATE(575), - [sym_try_statement] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_continue_statement] = STATE(575), - [sym_break_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_foreach_statement] = STATE(575), - [sym_if_statement] = STATE(575), - [sym_colon_block] = STATE(2318), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(575), - [sym_compound_statement] = STATE(575), - [sym_named_label_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(420), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(376), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(422), - [sym_heredoc] = ACTIONS(311), - }, - [16] = { - [sym_text_interpolation] = STATE(16), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(55), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [17] = { - [sym_text_interpolation] = STATE(17), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(61), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [18] = { - [sym_text_interpolation] = STATE(18), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [aux_sym_declare_statement_token2] = ACTIONS(428), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [19] = { - [sym_text_interpolation] = STATE(19), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(49), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(430), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [20] = { - [sym_text_interpolation] = STATE(20), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(432), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [21] = { - [sym_text_interpolation] = STATE(21), - [sym_empty_statement] = STATE(522), - [sym_function_static_declaration] = STATE(522), - [sym_global_declaration] = STATE(522), - [sym_namespace_definition] = STATE(522), - [sym_namespace_use_declaration] = STATE(522), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(522), - [sym_interface_declaration] = STATE(522), - [sym_enum_declaration] = STATE(522), - [sym_class_declaration] = STATE(522), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(522), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(522), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(522), - [sym_unset_statement] = STATE(522), - [sym_declare_statement] = STATE(522), - [sym_try_statement] = STATE(522), - [sym_goto_statement] = STATE(522), - [sym_continue_statement] = STATE(522), - [sym_break_statement] = STATE(522), - [sym_return_statement] = STATE(522), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(522), - [sym_do_statement] = STATE(522), - [sym_for_statement] = STATE(522), - [sym_foreach_statement] = STATE(522), - [sym_if_statement] = STATE(522), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(522), - [sym_compound_statement] = STATE(522), - [sym_named_label_statement] = STATE(522), - [sym_expression_statement] = STATE(522), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(434), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(436), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(438), - [sym_heredoc] = ACTIONS(311), - }, - [22] = { - [sym_text_interpolation] = STATE(22), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [23] = { - [sym_text_interpolation] = STATE(23), - [sym_empty_statement] = STATE(2032), - [sym_function_static_declaration] = STATE(2032), - [sym_global_declaration] = STATE(2032), - [sym_namespace_definition] = STATE(2032), - [sym_namespace_use_declaration] = STATE(2032), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2032), - [sym_interface_declaration] = STATE(2032), - [sym_enum_declaration] = STATE(2032), - [sym_class_declaration] = STATE(2032), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2032), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2032), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2032), - [sym_unset_statement] = STATE(2032), - [sym_declare_statement] = STATE(2032), - [sym_try_statement] = STATE(2032), - [sym_goto_statement] = STATE(2032), - [sym_continue_statement] = STATE(2032), - [sym_break_statement] = STATE(2032), - [sym_return_statement] = STATE(2032), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2032), - [sym_do_statement] = STATE(2032), - [sym_for_statement] = STATE(2032), - [sym_foreach_statement] = STATE(2032), - [sym_if_statement] = STATE(2032), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2032), - [sym_compound_statement] = STATE(2032), - [sym_named_label_statement] = STATE(2032), - [sym_expression_statement] = STATE(2032), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(444), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(384), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(396), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(400), - [aux_sym_foreach_statement_token1] = ACTIONS(402), - [aux_sym_if_statement_token1] = ACTIONS(404), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(446), - [sym_heredoc] = ACTIONS(311), - }, - [24] = { - [sym_text_interpolation] = STATE(24), - [sym_empty_statement] = STATE(563), - [sym_function_static_declaration] = STATE(563), - [sym_global_declaration] = STATE(563), - [sym_namespace_definition] = STATE(563), - [sym_namespace_use_declaration] = STATE(563), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(563), - [sym_interface_declaration] = STATE(563), - [sym_enum_declaration] = STATE(563), - [sym_class_declaration] = STATE(563), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(563), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(563), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(563), - [sym_unset_statement] = STATE(563), - [sym_declare_statement] = STATE(563), - [sym_try_statement] = STATE(563), - [sym_goto_statement] = STATE(563), - [sym_continue_statement] = STATE(563), - [sym_break_statement] = STATE(563), - [sym_return_statement] = STATE(563), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(563), - [sym_do_statement] = STATE(563), - [sym_for_statement] = STATE(563), - [sym_foreach_statement] = STATE(563), - [sym_if_statement] = STATE(563), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(563), - [sym_compound_statement] = STATE(563), - [sym_named_label_statement] = STATE(563), - [sym_expression_statement] = STATE(563), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(448), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(450), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(452), - [sym_heredoc] = ACTIONS(311), - }, - [25] = { - [sym_text_interpolation] = STATE(25), - [sym_empty_statement] = STATE(2004), - [sym_function_static_declaration] = STATE(2004), - [sym_global_declaration] = STATE(2004), - [sym_namespace_definition] = STATE(2004), - [sym_namespace_use_declaration] = STATE(2004), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym_enum_declaration] = STATE(2004), - [sym_class_declaration] = STATE(2004), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2004), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2004), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2004), - [sym_unset_statement] = STATE(2004), - [sym_declare_statement] = STATE(2004), - [sym_try_statement] = STATE(2004), - [sym_goto_statement] = STATE(2004), - [sym_continue_statement] = STATE(2004), - [sym_break_statement] = STATE(2004), - [sym_return_statement] = STATE(2004), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2004), - [sym_do_statement] = STATE(2004), - [sym_for_statement] = STATE(2004), - [sym_foreach_statement] = STATE(2004), - [sym_if_statement] = STATE(2004), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2004), - [sym_compound_statement] = STATE(2004), - [sym_named_label_statement] = STATE(2004), - [sym_expression_statement] = STATE(2004), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(454), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(456), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(384), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(396), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(400), - [aux_sym_foreach_statement_token1] = ACTIONS(402), - [aux_sym_if_statement_token1] = ACTIONS(404), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(458), - [sym_heredoc] = ACTIONS(311), - }, - [26] = { - [sym_text_interpolation] = STATE(26), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(440), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [27] = { - [sym_text_interpolation] = STATE(27), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(45), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(460), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [28] = { - [sym_text_interpolation] = STATE(28), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(462), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [29] = { - [sym_text_interpolation] = STATE(29), - [sym_empty_statement] = STATE(543), - [sym_function_static_declaration] = STATE(543), - [sym_global_declaration] = STATE(543), - [sym_namespace_definition] = STATE(543), - [sym_namespace_use_declaration] = STATE(543), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(543), - [sym_interface_declaration] = STATE(543), - [sym_enum_declaration] = STATE(543), - [sym_class_declaration] = STATE(543), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(543), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(543), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(543), - [sym_unset_statement] = STATE(543), - [sym_declare_statement] = STATE(543), - [sym_try_statement] = STATE(543), - [sym_goto_statement] = STATE(543), - [sym_continue_statement] = STATE(543), - [sym_break_statement] = STATE(543), - [sym_return_statement] = STATE(543), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(543), - [sym_do_statement] = STATE(543), - [sym_for_statement] = STATE(543), - [sym_foreach_statement] = STATE(543), - [sym_if_statement] = STATE(543), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(543), - [sym_compound_statement] = STATE(543), - [sym_named_label_statement] = STATE(543), - [sym_expression_statement] = STATE(543), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(464), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(466), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(468), - [sym_heredoc] = ACTIONS(311), - }, - [30] = { - [sym_text_interpolation] = STATE(30), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(470), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [31] = { - [sym_text_interpolation] = STATE(31), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(470), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [32] = { - [sym_text_interpolation] = STATE(32), - [sym_empty_statement] = STATE(1986), - [sym_function_static_declaration] = STATE(1986), - [sym_global_declaration] = STATE(1986), - [sym_namespace_definition] = STATE(1986), - [sym_namespace_use_declaration] = STATE(1986), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(1986), - [sym_interface_declaration] = STATE(1986), - [sym_enum_declaration] = STATE(1986), - [sym_class_declaration] = STATE(1986), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(1986), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(1986), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1986), - [sym_unset_statement] = STATE(1986), - [sym_declare_statement] = STATE(1986), - [sym_try_statement] = STATE(1986), - [sym_goto_statement] = STATE(1986), - [sym_continue_statement] = STATE(1986), - [sym_break_statement] = STATE(1986), - [sym_return_statement] = STATE(1986), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1986), - [sym_do_statement] = STATE(1986), - [sym_for_statement] = STATE(1986), - [sym_foreach_statement] = STATE(1986), - [sym_if_statement] = STATE(1986), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(1986), - [sym_compound_statement] = STATE(1986), - [sym_named_label_statement] = STATE(1986), - [sym_expression_statement] = STATE(1986), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(474), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(384), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(396), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(400), - [aux_sym_foreach_statement_token1] = ACTIONS(402), - [aux_sym_if_statement_token1] = ACTIONS(404), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(476), - [sym_heredoc] = ACTIONS(311), - }, - [33] = { - [sym_text_interpolation] = STATE(33), - [sym_empty_statement] = STATE(1982), - [sym_function_static_declaration] = STATE(1982), - [sym_global_declaration] = STATE(1982), - [sym_namespace_definition] = STATE(1982), - [sym_namespace_use_declaration] = STATE(1982), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym_enum_declaration] = STATE(1982), - [sym_class_declaration] = STATE(1982), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(1982), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(1982), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1982), - [sym_unset_statement] = STATE(1982), - [sym_declare_statement] = STATE(1982), - [sym_try_statement] = STATE(1982), - [sym_goto_statement] = STATE(1982), - [sym_continue_statement] = STATE(1982), - [sym_break_statement] = STATE(1982), - [sym_return_statement] = STATE(1982), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1982), - [sym_do_statement] = STATE(1982), - [sym_for_statement] = STATE(1982), - [sym_foreach_statement] = STATE(1982), - [sym_if_statement] = STATE(1982), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(1982), - [sym_compound_statement] = STATE(1982), - [sym_named_label_statement] = STATE(1982), - [sym_expression_statement] = STATE(1982), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(480), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(384), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(396), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(400), - [aux_sym_foreach_statement_token1] = ACTIONS(402), - [aux_sym_if_statement_token1] = ACTIONS(404), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(482), - [sym_heredoc] = ACTIONS(311), - }, - [34] = { - [sym_text_interpolation] = STATE(34), - [sym_empty_statement] = STATE(563), - [sym_function_static_declaration] = STATE(563), - [sym_global_declaration] = STATE(563), - [sym_namespace_definition] = STATE(563), - [sym_namespace_use_declaration] = STATE(563), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(563), - [sym_interface_declaration] = STATE(563), - [sym_enum_declaration] = STATE(563), - [sym_class_declaration] = STATE(563), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(563), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(563), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(563), - [sym_unset_statement] = STATE(563), - [sym_declare_statement] = STATE(563), - [sym_try_statement] = STATE(563), - [sym_goto_statement] = STATE(563), - [sym_continue_statement] = STATE(563), - [sym_break_statement] = STATE(563), - [sym_return_statement] = STATE(563), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(563), - [sym_do_statement] = STATE(563), - [sym_for_statement] = STATE(563), - [sym_foreach_statement] = STATE(563), - [sym_if_statement] = STATE(563), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(563), - [sym_compound_statement] = STATE(563), - [sym_named_label_statement] = STATE(563), - [sym_expression_statement] = STATE(563), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(448), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(450), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(452), - [sym_heredoc] = ACTIONS(311), - }, - [35] = { - [sym_text_interpolation] = STATE(35), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(31), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(484), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [36] = { - [sym_text_interpolation] = STATE(36), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [aux_sym_declare_statement_token2] = ACTIONS(486), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [37] = { - [sym_text_interpolation] = STATE(37), - [sym_empty_statement] = STATE(492), - [sym_function_static_declaration] = STATE(492), - [sym_global_declaration] = STATE(492), - [sym_namespace_definition] = STATE(492), - [sym_namespace_use_declaration] = STATE(492), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(492), - [sym_interface_declaration] = STATE(492), - [sym_enum_declaration] = STATE(492), - [sym_class_declaration] = STATE(492), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(492), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(492), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(492), - [sym_unset_statement] = STATE(492), - [sym_declare_statement] = STATE(492), - [sym_try_statement] = STATE(492), - [sym_goto_statement] = STATE(492), - [sym_continue_statement] = STATE(492), - [sym_break_statement] = STATE(492), - [sym_return_statement] = STATE(492), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(492), - [sym_do_statement] = STATE(492), - [sym_for_statement] = STATE(492), - [sym_foreach_statement] = STATE(492), - [sym_if_statement] = STATE(492), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(492), - [sym_compound_statement] = STATE(492), - [sym_named_label_statement] = STATE(492), - [sym_expression_statement] = STATE(492), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(488), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(490), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(492), - [sym_heredoc] = ACTIONS(311), - }, - [38] = { - [sym_text_interpolation] = STATE(38), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(36), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [aux_sym_declare_statement_token2] = ACTIONS(494), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [39] = { - [sym_text_interpolation] = STATE(39), - [sym_empty_statement] = STATE(1545), - [sym_function_static_declaration] = STATE(1545), - [sym_global_declaration] = STATE(1545), - [sym_namespace_definition] = STATE(1545), - [sym_namespace_use_declaration] = STATE(1545), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(1545), - [sym_interface_declaration] = STATE(1545), - [sym_enum_declaration] = STATE(1545), - [sym_class_declaration] = STATE(1545), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(1545), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(1545), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1545), - [sym_unset_statement] = STATE(1545), - [sym_declare_statement] = STATE(1545), - [sym_try_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1545), - [sym_do_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_foreach_statement] = STATE(1545), - [sym_if_statement] = STATE(1545), - [sym_colon_block] = STATE(1541), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(1545), - [sym_compound_statement] = STATE(1545), - [sym_named_label_statement] = STATE(1545), - [sym_expression_statement] = STATE(1545), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(496), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(498), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [40] = { - [sym_text_interpolation] = STATE(40), - [sym_empty_statement] = STATE(530), - [sym_function_static_declaration] = STATE(530), - [sym_global_declaration] = STATE(530), - [sym_namespace_definition] = STATE(530), - [sym_namespace_use_declaration] = STATE(530), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(530), - [sym_interface_declaration] = STATE(530), - [sym_enum_declaration] = STATE(530), - [sym_class_declaration] = STATE(530), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(530), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(530), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(530), - [sym_unset_statement] = STATE(530), - [sym_declare_statement] = STATE(530), - [sym_try_statement] = STATE(530), - [sym_goto_statement] = STATE(530), - [sym_continue_statement] = STATE(530), - [sym_break_statement] = STATE(530), - [sym_return_statement] = STATE(530), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(530), - [sym_do_statement] = STATE(530), - [sym_for_statement] = STATE(530), - [sym_foreach_statement] = STATE(530), - [sym_if_statement] = STATE(530), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(530), - [sym_compound_statement] = STATE(530), - [sym_named_label_statement] = STATE(530), - [sym_expression_statement] = STATE(530), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(500), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(502), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(504), - [sym_heredoc] = ACTIONS(311), - }, - [41] = { - [sym_text_interpolation] = STATE(41), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(73), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(506), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [42] = { - [sym_text_interpolation] = STATE(42), - [sym_empty_statement] = STATE(495), - [sym_function_static_declaration] = STATE(495), - [sym_global_declaration] = STATE(495), - [sym_namespace_definition] = STATE(495), - [sym_namespace_use_declaration] = STATE(495), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(495), - [sym_interface_declaration] = STATE(495), - [sym_enum_declaration] = STATE(495), - [sym_class_declaration] = STATE(495), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(495), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(495), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(495), - [sym_unset_statement] = STATE(495), - [sym_declare_statement] = STATE(495), - [sym_try_statement] = STATE(495), - [sym_goto_statement] = STATE(495), - [sym_continue_statement] = STATE(495), - [sym_break_statement] = STATE(495), - [sym_return_statement] = STATE(495), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(495), - [sym_do_statement] = STATE(495), - [sym_for_statement] = STATE(495), - [sym_foreach_statement] = STATE(495), - [sym_if_statement] = STATE(495), - [sym_colon_block] = STATE(2398), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(495), - [sym_compound_statement] = STATE(495), - [sym_named_label_statement] = STATE(495), - [sym_expression_statement] = STATE(495), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(376), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [43] = { - [sym_text_interpolation] = STATE(43), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(506), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [44] = { - [sym_text_interpolation] = STATE(44), - [sym_empty_statement] = STATE(455), - [sym_function_static_declaration] = STATE(455), - [sym_global_declaration] = STATE(455), - [sym_namespace_definition] = STATE(455), - [sym_namespace_use_declaration] = STATE(455), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(455), - [sym_interface_declaration] = STATE(455), - [sym_enum_declaration] = STATE(455), - [sym_class_declaration] = STATE(455), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(455), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(455), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(455), - [sym_unset_statement] = STATE(455), - [sym_declare_statement] = STATE(455), - [sym_try_statement] = STATE(455), - [sym_goto_statement] = STATE(455), - [sym_continue_statement] = STATE(455), - [sym_break_statement] = STATE(455), - [sym_return_statement] = STATE(455), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(455), - [sym_do_statement] = STATE(455), - [sym_for_statement] = STATE(455), - [sym_foreach_statement] = STATE(455), - [sym_if_statement] = STATE(455), - [sym_colon_block] = STATE(1496), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(455), - [sym_compound_statement] = STATE(455), - [sym_named_label_statement] = STATE(455), - [sym_expression_statement] = STATE(455), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(498), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [45] = { - [sym_text_interpolation] = STATE(45), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(508), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [46] = { - [sym_text_interpolation] = STATE(46), - [sym_empty_statement] = STATE(492), - [sym_function_static_declaration] = STATE(492), - [sym_global_declaration] = STATE(492), - [sym_namespace_definition] = STATE(492), - [sym_namespace_use_declaration] = STATE(492), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(492), - [sym_interface_declaration] = STATE(492), - [sym_enum_declaration] = STATE(492), - [sym_class_declaration] = STATE(492), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(492), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(492), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(492), - [sym_unset_statement] = STATE(492), - [sym_declare_statement] = STATE(492), - [sym_try_statement] = STATE(492), - [sym_goto_statement] = STATE(492), - [sym_continue_statement] = STATE(492), - [sym_break_statement] = STATE(492), - [sym_return_statement] = STATE(492), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(492), - [sym_do_statement] = STATE(492), - [sym_for_statement] = STATE(492), - [sym_foreach_statement] = STATE(492), - [sym_if_statement] = STATE(492), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(492), - [sym_compound_statement] = STATE(492), - [sym_named_label_statement] = STATE(492), - [sym_expression_statement] = STATE(492), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(488), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(490), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(492), - [sym_heredoc] = ACTIONS(311), - }, - [47] = { - [sym_text_interpolation] = STATE(47), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [aux_sym_declare_statement_token2] = ACTIONS(510), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [48] = { - [sym_text_interpolation] = STATE(48), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(512), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [49] = { - [sym_text_interpolation] = STATE(49), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(424), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [50] = { - [sym_text_interpolation] = STATE(50), - [sym_empty_statement] = STATE(2009), - [sym_function_static_declaration] = STATE(2009), - [sym_global_declaration] = STATE(2009), - [sym_namespace_definition] = STATE(2009), - [sym_namespace_use_declaration] = STATE(2009), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2009), - [sym_interface_declaration] = STATE(2009), - [sym_enum_declaration] = STATE(2009), - [sym_class_declaration] = STATE(2009), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2009), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2009), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2009), - [sym_unset_statement] = STATE(2009), - [sym_declare_statement] = STATE(2009), - [sym_try_statement] = STATE(2009), - [sym_goto_statement] = STATE(2009), - [sym_continue_statement] = STATE(2009), - [sym_break_statement] = STATE(2009), - [sym_return_statement] = STATE(2009), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2009), - [sym_do_statement] = STATE(2009), - [sym_for_statement] = STATE(2009), - [sym_foreach_statement] = STATE(2009), - [sym_if_statement] = STATE(2009), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2009), - [sym_compound_statement] = STATE(2009), - [sym_named_label_statement] = STATE(2009), - [sym_expression_statement] = STATE(2009), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(514), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(516), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(384), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(396), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(400), - [aux_sym_foreach_statement_token1] = ACTIONS(402), - [aux_sym_if_statement_token1] = ACTIONS(404), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(518), - [sym_heredoc] = ACTIONS(311), - }, - [51] = { - [sym_text_interpolation] = STATE(51), - [sym_empty_statement] = STATE(543), - [sym_function_static_declaration] = STATE(543), - [sym_global_declaration] = STATE(543), - [sym_namespace_definition] = STATE(543), - [sym_namespace_use_declaration] = STATE(543), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(543), - [sym_interface_declaration] = STATE(543), - [sym_enum_declaration] = STATE(543), - [sym_class_declaration] = STATE(543), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(543), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(543), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(543), - [sym_unset_statement] = STATE(543), - [sym_declare_statement] = STATE(543), - [sym_try_statement] = STATE(543), - [sym_goto_statement] = STATE(543), - [sym_continue_statement] = STATE(543), - [sym_break_statement] = STATE(543), - [sym_return_statement] = STATE(543), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(543), - [sym_do_statement] = STATE(543), - [sym_for_statement] = STATE(543), - [sym_foreach_statement] = STATE(543), - [sym_if_statement] = STATE(543), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(543), - [sym_compound_statement] = STATE(543), - [sym_named_label_statement] = STATE(543), - [sym_expression_statement] = STATE(543), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(464), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(466), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(468), - [sym_heredoc] = ACTIONS(311), - }, - [52] = { - [sym_text_interpolation] = STATE(52), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(60), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(520), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [53] = { - [sym_text_interpolation] = STATE(53), - [sym_empty_statement] = STATE(1921), - [sym_function_static_declaration] = STATE(1921), - [sym_global_declaration] = STATE(1921), - [sym_namespace_definition] = STATE(1921), - [sym_namespace_use_declaration] = STATE(1921), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(1921), - [sym_interface_declaration] = STATE(1921), - [sym_enum_declaration] = STATE(1921), - [sym_class_declaration] = STATE(1921), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(1921), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(1921), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1921), - [sym_unset_statement] = STATE(1921), - [sym_declare_statement] = STATE(1921), - [sym_try_statement] = STATE(1921), - [sym_goto_statement] = STATE(1921), - [sym_continue_statement] = STATE(1921), - [sym_break_statement] = STATE(1921), - [sym_return_statement] = STATE(1921), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1921), - [sym_do_statement] = STATE(1921), - [sym_for_statement] = STATE(1921), - [sym_foreach_statement] = STATE(1921), - [sym_if_statement] = STATE(1921), - [sym_colon_block] = STATE(2500), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(1921), - [sym_compound_statement] = STATE(1921), - [sym_named_label_statement] = STATE(1921), - [sym_expression_statement] = STATE(1921), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(496), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(376), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [54] = { - [sym_text_interpolation] = STATE(54), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(522), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [55] = { - [sym_text_interpolation] = STATE(55), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(524), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [56] = { - [sym_text_interpolation] = STATE(56), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(58), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(524), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [57] = { - [sym_text_interpolation] = STATE(57), - [sym_empty_statement] = STATE(522), - [sym_function_static_declaration] = STATE(522), - [sym_global_declaration] = STATE(522), - [sym_namespace_definition] = STATE(522), - [sym_namespace_use_declaration] = STATE(522), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(522), - [sym_interface_declaration] = STATE(522), - [sym_enum_declaration] = STATE(522), - [sym_class_declaration] = STATE(522), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(522), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(522), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(522), - [sym_unset_statement] = STATE(522), - [sym_declare_statement] = STATE(522), - [sym_try_statement] = STATE(522), - [sym_goto_statement] = STATE(522), - [sym_continue_statement] = STATE(522), - [sym_break_statement] = STATE(522), - [sym_return_statement] = STATE(522), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(522), - [sym_do_statement] = STATE(522), - [sym_for_statement] = STATE(522), - [sym_foreach_statement] = STATE(522), - [sym_if_statement] = STATE(522), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(522), - [sym_compound_statement] = STATE(522), - [sym_named_label_statement] = STATE(522), - [sym_expression_statement] = STATE(522), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(434), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(436), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(438), - [sym_heredoc] = ACTIONS(311), - }, - [58] = { - [sym_text_interpolation] = STATE(58), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(426), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [59] = { - [sym_text_interpolation] = STATE(59), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(76), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(432), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [60] = { - [sym_text_interpolation] = STATE(60), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(526), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [61] = { - [sym_text_interpolation] = STATE(61), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(528), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [62] = { - [sym_text_interpolation] = STATE(62), - [sym_empty_statement] = STATE(2009), - [sym_function_static_declaration] = STATE(2009), - [sym_global_declaration] = STATE(2009), - [sym_namespace_definition] = STATE(2009), - [sym_namespace_use_declaration] = STATE(2009), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2009), - [sym_interface_declaration] = STATE(2009), - [sym_enum_declaration] = STATE(2009), - [sym_class_declaration] = STATE(2009), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2009), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2009), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2009), - [sym_unset_statement] = STATE(2009), - [sym_declare_statement] = STATE(2009), - [sym_try_statement] = STATE(2009), - [sym_goto_statement] = STATE(2009), - [sym_continue_statement] = STATE(2009), - [sym_break_statement] = STATE(2009), - [sym_return_statement] = STATE(2009), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2009), - [sym_do_statement] = STATE(2009), - [sym_for_statement] = STATE(2009), - [sym_foreach_statement] = STATE(2009), - [sym_if_statement] = STATE(2009), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2009), - [sym_compound_statement] = STATE(2009), - [sym_named_label_statement] = STATE(2009), - [sym_expression_statement] = STATE(2009), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(514), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(516), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(518), - [sym_heredoc] = ACTIONS(311), - }, - [63] = { - [sym_text_interpolation] = STATE(63), - [sym_empty_statement] = STATE(1921), - [sym_function_static_declaration] = STATE(1921), - [sym_global_declaration] = STATE(1921), - [sym_namespace_definition] = STATE(1921), - [sym_namespace_use_declaration] = STATE(1921), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(1921), - [sym_interface_declaration] = STATE(1921), - [sym_enum_declaration] = STATE(1921), - [sym_class_declaration] = STATE(1921), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(1921), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(1921), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1921), - [sym_unset_statement] = STATE(1921), - [sym_declare_statement] = STATE(1921), - [sym_try_statement] = STATE(1921), - [sym_goto_statement] = STATE(1921), - [sym_continue_statement] = STATE(1921), - [sym_break_statement] = STATE(1921), - [sym_return_statement] = STATE(1921), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1921), - [sym_do_statement] = STATE(1921), - [sym_for_statement] = STATE(1921), - [sym_foreach_statement] = STATE(1921), - [sym_if_statement] = STATE(1921), - [sym_colon_block] = STATE(2500), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(1921), - [sym_compound_statement] = STATE(1921), - [sym_named_label_statement] = STATE(1921), - [sym_expression_statement] = STATE(1921), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(496), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(376), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(384), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(396), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(400), - [aux_sym_foreach_statement_token1] = ACTIONS(402), - [aux_sym_if_statement_token1] = ACTIONS(404), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [64] = { - [sym_text_interpolation] = STATE(64), - [sym_empty_statement] = STATE(1547), - [sym_function_static_declaration] = STATE(1547), - [sym_global_declaration] = STATE(1547), - [sym_namespace_definition] = STATE(1547), - [sym_namespace_use_declaration] = STATE(1547), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(1547), - [sym_interface_declaration] = STATE(1547), - [sym_enum_declaration] = STATE(1547), - [sym_class_declaration] = STATE(1547), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(1547), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(1547), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1547), - [sym_unset_statement] = STATE(1547), - [sym_declare_statement] = STATE(1547), - [sym_try_statement] = STATE(1547), - [sym_goto_statement] = STATE(1547), - [sym_continue_statement] = STATE(1547), - [sym_break_statement] = STATE(1547), - [sym_return_statement] = STATE(1547), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1547), - [sym_do_statement] = STATE(1547), - [sym_for_statement] = STATE(1547), - [sym_foreach_statement] = STATE(1547), - [sym_if_statement] = STATE(1547), - [sym_colon_block] = STATE(1541), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(1547), - [sym_compound_statement] = STATE(1547), - [sym_named_label_statement] = STATE(1547), - [sym_expression_statement] = STATE(1547), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(496), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(498), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [65] = { - [sym_text_interpolation] = STATE(65), - [sym_empty_statement] = STATE(453), - [sym_function_static_declaration] = STATE(453), - [sym_global_declaration] = STATE(453), - [sym_namespace_definition] = STATE(453), - [sym_namespace_use_declaration] = STATE(453), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(453), - [sym_interface_declaration] = STATE(453), - [sym_enum_declaration] = STATE(453), - [sym_class_declaration] = STATE(453), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(453), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(453), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(453), - [sym_unset_statement] = STATE(453), - [sym_declare_statement] = STATE(453), - [sym_try_statement] = STATE(453), - [sym_goto_statement] = STATE(453), - [sym_continue_statement] = STATE(453), - [sym_break_statement] = STATE(453), - [sym_return_statement] = STATE(453), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(453), - [sym_do_statement] = STATE(453), - [sym_for_statement] = STATE(453), - [sym_foreach_statement] = STATE(453), - [sym_if_statement] = STATE(453), - [sym_colon_block] = STATE(1496), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(453), - [sym_compound_statement] = STATE(453), - [sym_named_label_statement] = STATE(453), - [sym_expression_statement] = STATE(453), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(498), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [66] = { - [sym_text_interpolation] = STATE(66), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(54), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(530), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [67] = { - [sym_text_interpolation] = STATE(67), - [sym_empty_statement] = STATE(495), - [sym_function_static_declaration] = STATE(495), - [sym_global_declaration] = STATE(495), - [sym_namespace_definition] = STATE(495), - [sym_namespace_use_declaration] = STATE(495), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(495), - [sym_interface_declaration] = STATE(495), - [sym_enum_declaration] = STATE(495), - [sym_class_declaration] = STATE(495), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(495), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(495), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(495), - [sym_unset_statement] = STATE(495), - [sym_declare_statement] = STATE(495), - [sym_try_statement] = STATE(495), - [sym_goto_statement] = STATE(495), - [sym_continue_statement] = STATE(495), - [sym_break_statement] = STATE(495), - [sym_return_statement] = STATE(495), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(495), - [sym_do_statement] = STATE(495), - [sym_for_statement] = STATE(495), - [sym_foreach_statement] = STATE(495), - [sym_if_statement] = STATE(495), - [sym_colon_block] = STATE(2398), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(495), - [sym_compound_statement] = STATE(495), - [sym_named_label_statement] = STATE(495), - [sym_expression_statement] = STATE(495), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(376), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [68] = { - [sym_text_interpolation] = STATE(68), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(532), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [69] = { - [sym_text_interpolation] = STATE(69), - [sym_empty_statement] = STATE(2032), - [sym_function_static_declaration] = STATE(2032), - [sym_global_declaration] = STATE(2032), - [sym_namespace_definition] = STATE(2032), - [sym_namespace_use_declaration] = STATE(2032), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2032), - [sym_interface_declaration] = STATE(2032), - [sym_enum_declaration] = STATE(2032), - [sym_class_declaration] = STATE(2032), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2032), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2032), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2032), - [sym_unset_statement] = STATE(2032), - [sym_declare_statement] = STATE(2032), - [sym_try_statement] = STATE(2032), - [sym_goto_statement] = STATE(2032), - [sym_continue_statement] = STATE(2032), - [sym_break_statement] = STATE(2032), - [sym_return_statement] = STATE(2032), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2032), - [sym_do_statement] = STATE(2032), - [sym_for_statement] = STATE(2032), - [sym_foreach_statement] = STATE(2032), - [sym_if_statement] = STATE(2032), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2032), - [sym_compound_statement] = STATE(2032), - [sym_named_label_statement] = STATE(2032), - [sym_expression_statement] = STATE(2032), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(444), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(446), - [sym_heredoc] = ACTIONS(311), - }, - [70] = { - [sym_text_interpolation] = STATE(70), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(48), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(534), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [71] = { - [sym_text_interpolation] = STATE(71), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(536), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [72] = { - [sym_text_interpolation] = STATE(72), - [sym_empty_statement] = STATE(1982), - [sym_function_static_declaration] = STATE(1982), - [sym_global_declaration] = STATE(1982), - [sym_namespace_definition] = STATE(1982), - [sym_namespace_use_declaration] = STATE(1982), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(1982), - [sym_interface_declaration] = STATE(1982), - [sym_enum_declaration] = STATE(1982), - [sym_class_declaration] = STATE(1982), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(1982), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(1982), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1982), - [sym_unset_statement] = STATE(1982), - [sym_declare_statement] = STATE(1982), - [sym_try_statement] = STATE(1982), - [sym_goto_statement] = STATE(1982), - [sym_continue_statement] = STATE(1982), - [sym_break_statement] = STATE(1982), - [sym_return_statement] = STATE(1982), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1982), - [sym_do_statement] = STATE(1982), - [sym_for_statement] = STATE(1982), - [sym_foreach_statement] = STATE(1982), - [sym_if_statement] = STATE(1982), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(1982), - [sym_compound_statement] = STATE(1982), - [sym_named_label_statement] = STATE(1982), - [sym_expression_statement] = STATE(1982), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(478), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(480), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(482), - [sym_heredoc] = ACTIONS(311), - }, - [73] = { - [sym_text_interpolation] = STATE(73), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(538), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [74] = { - [sym_text_interpolation] = STATE(74), - [sym_empty_statement] = STATE(1986), - [sym_function_static_declaration] = STATE(1986), - [sym_global_declaration] = STATE(1986), - [sym_namespace_definition] = STATE(1986), - [sym_namespace_use_declaration] = STATE(1986), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(1986), - [sym_interface_declaration] = STATE(1986), - [sym_enum_declaration] = STATE(1986), - [sym_class_declaration] = STATE(1986), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(1986), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(1986), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1986), - [sym_unset_statement] = STATE(1986), - [sym_declare_statement] = STATE(1986), - [sym_try_statement] = STATE(1986), - [sym_goto_statement] = STATE(1986), - [sym_continue_statement] = STATE(1986), - [sym_break_statement] = STATE(1986), - [sym_return_statement] = STATE(1986), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1986), - [sym_do_statement] = STATE(1986), - [sym_for_statement] = STATE(1986), - [sym_foreach_statement] = STATE(1986), - [sym_if_statement] = STATE(1986), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(1986), - [sym_compound_statement] = STATE(1986), - [sym_named_label_statement] = STATE(1986), - [sym_expression_statement] = STATE(1986), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(472), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(474), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(476), - [sym_heredoc] = ACTIONS(311), - }, - [75] = { - [sym_text_interpolation] = STATE(75), - [sym_empty_statement] = STATE(530), - [sym_function_static_declaration] = STATE(530), - [sym_global_declaration] = STATE(530), - [sym_namespace_definition] = STATE(530), - [sym_namespace_use_declaration] = STATE(530), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(530), - [sym_interface_declaration] = STATE(530), - [sym_enum_declaration] = STATE(530), - [sym_class_declaration] = STATE(530), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(530), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(530), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(530), - [sym_unset_statement] = STATE(530), - [sym_declare_statement] = STATE(530), - [sym_try_statement] = STATE(530), - [sym_goto_statement] = STATE(530), - [sym_continue_statement] = STATE(530), - [sym_break_statement] = STATE(530), - [sym_return_statement] = STATE(530), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(530), - [sym_do_statement] = STATE(530), - [sym_for_statement] = STATE(530), - [sym_foreach_statement] = STATE(530), - [sym_if_statement] = STATE(530), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(530), - [sym_compound_statement] = STATE(530), - [sym_named_label_statement] = STATE(530), - [sym_expression_statement] = STATE(530), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(500), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(502), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(504), - [sym_heredoc] = ACTIONS(311), - }, - [76] = { - [sym_text_interpolation] = STATE(76), - [sym_empty_statement] = STATE(523), - [sym_function_static_declaration] = STATE(523), - [sym_global_declaration] = STATE(523), - [sym_namespace_definition] = STATE(523), - [sym_namespace_use_declaration] = STATE(523), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(523), - [sym_interface_declaration] = STATE(523), - [sym_enum_declaration] = STATE(523), - [sym_class_declaration] = STATE(523), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(523), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(523), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(523), - [sym_unset_statement] = STATE(523), - [sym_declare_statement] = STATE(523), - [sym_try_statement] = STATE(523), - [sym_goto_statement] = STATE(523), - [sym_continue_statement] = STATE(523), - [sym_break_statement] = STATE(523), - [sym_return_statement] = STATE(523), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(523), - [sym_do_statement] = STATE(523), - [sym_for_statement] = STATE(523), - [sym_foreach_statement] = STATE(523), - [sym_if_statement] = STATE(523), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(523), - [sym_compound_statement] = STATE(523), - [sym_named_label_statement] = STATE(523), - [sym_expression_statement] = STATE(523), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_for_statement_token2] = ACTIONS(540), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [77] = { - [sym_text_interpolation] = STATE(77), - [sym_empty_statement] = STATE(2004), - [sym_function_static_declaration] = STATE(2004), - [sym_global_declaration] = STATE(2004), - [sym_namespace_definition] = STATE(2004), - [sym_namespace_use_declaration] = STATE(2004), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym_enum_declaration] = STATE(2004), - [sym_class_declaration] = STATE(2004), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2004), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2004), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2004), - [sym_unset_statement] = STATE(2004), - [sym_declare_statement] = STATE(2004), - [sym_try_statement] = STATE(2004), - [sym_goto_statement] = STATE(2004), - [sym_continue_statement] = STATE(2004), - [sym_break_statement] = STATE(2004), - [sym_return_statement] = STATE(2004), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2004), - [sym_do_statement] = STATE(2004), - [sym_for_statement] = STATE(2004), - [sym_foreach_statement] = STATE(2004), - [sym_if_statement] = STATE(2004), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2004), - [sym_compound_statement] = STATE(2004), - [sym_named_label_statement] = STATE(2004), - [sym_expression_statement] = STATE(2004), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(454), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [anon_sym_COLON] = ACTIONS(456), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(458), - [sym_heredoc] = ACTIONS(311), - }, - [78] = { - [sym_text_interpolation] = STATE(78), - [sym_empty_statement] = STATE(502), - [sym_function_static_declaration] = STATE(502), - [sym_global_declaration] = STATE(502), - [sym_namespace_definition] = STATE(502), - [sym_namespace_use_declaration] = STATE(502), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(502), - [sym_interface_declaration] = STATE(502), - [sym_enum_declaration] = STATE(502), - [sym_class_declaration] = STATE(502), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(502), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(502), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(502), - [sym_unset_statement] = STATE(502), - [sym_declare_statement] = STATE(502), - [sym_try_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym_foreach_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(502), - [sym_compound_statement] = STATE(502), - [sym_named_label_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [79] = { - [sym_text_interpolation] = STATE(79), - [sym_empty_statement] = STATE(2418), - [sym_function_static_declaration] = STATE(2418), - [sym_global_declaration] = STATE(2418), - [sym_namespace_definition] = STATE(2418), - [sym_namespace_use_declaration] = STATE(2418), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2418), - [sym_interface_declaration] = STATE(2418), - [sym_enum_declaration] = STATE(2418), - [sym_class_declaration] = STATE(2418), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2418), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2418), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2418), - [sym_unset_statement] = STATE(2418), - [sym_declare_statement] = STATE(2418), - [sym_try_statement] = STATE(2418), - [sym_goto_statement] = STATE(2418), - [sym_continue_statement] = STATE(2418), - [sym_break_statement] = STATE(2418), - [sym_return_statement] = STATE(2418), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2418), - [sym_do_statement] = STATE(2418), - [sym_for_statement] = STATE(2418), - [sym_foreach_statement] = STATE(2418), - [sym_if_statement] = STATE(2418), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2418), - [sym_compound_statement] = STATE(2418), - [sym_named_label_statement] = STATE(2418), - [sym_expression_statement] = STATE(2418), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(496), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(384), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(396), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(400), - [aux_sym_foreach_statement_token1] = ACTIONS(402), - [aux_sym_if_statement_token1] = ACTIONS(404), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [80] = { - [sym_text_interpolation] = STATE(80), - [sym_empty_statement] = STATE(2022), - [sym_function_static_declaration] = STATE(2022), - [sym_global_declaration] = STATE(2022), - [sym_namespace_definition] = STATE(2022), - [sym_namespace_use_declaration] = STATE(2022), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2022), - [sym_interface_declaration] = STATE(2022), - [sym_enum_declaration] = STATE(2022), - [sym_class_declaration] = STATE(2022), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2022), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2022), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2022), - [sym_unset_statement] = STATE(2022), - [sym_declare_statement] = STATE(2022), - [sym_try_statement] = STATE(2022), - [sym_goto_statement] = STATE(2022), - [sym_continue_statement] = STATE(2022), - [sym_break_statement] = STATE(2022), - [sym_return_statement] = STATE(2022), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2022), - [sym_do_statement] = STATE(2022), - [sym_for_statement] = STATE(2022), - [sym_foreach_statement] = STATE(2022), - [sym_if_statement] = STATE(2022), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2022), - [sym_compound_statement] = STATE(2022), - [sym_named_label_statement] = STATE(2022), - [sym_expression_statement] = STATE(2022), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(496), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(384), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(396), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(400), - [aux_sym_foreach_statement_token1] = ACTIONS(402), - [aux_sym_if_statement_token1] = ACTIONS(404), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [81] = { - [sym_text_interpolation] = STATE(81), - [sym_empty_statement] = STATE(516), - [sym_function_static_declaration] = STATE(516), - [sym_global_declaration] = STATE(516), - [sym_namespace_definition] = STATE(516), - [sym_namespace_use_declaration] = STATE(516), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(516), - [sym_interface_declaration] = STATE(516), - [sym_enum_declaration] = STATE(516), - [sym_class_declaration] = STATE(516), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(516), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(516), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(516), - [sym_unset_statement] = STATE(516), - [sym_declare_statement] = STATE(516), - [sym_try_statement] = STATE(516), - [sym_goto_statement] = STATE(516), - [sym_continue_statement] = STATE(516), - [sym_break_statement] = STATE(516), - [sym_return_statement] = STATE(516), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(516), - [sym_do_statement] = STATE(516), - [sym_for_statement] = STATE(516), - [sym_foreach_statement] = STATE(516), - [sym_if_statement] = STATE(516), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(516), - [sym_compound_statement] = STATE(516), - [sym_named_label_statement] = STATE(516), - [sym_expression_statement] = STATE(516), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(241), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(257), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(261), - [aux_sym_foreach_statement_token1] = ACTIONS(263), - [aux_sym_if_statement_token1] = ACTIONS(265), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [82] = { - [sym_text_interpolation] = STATE(82), - [sym_empty_statement] = STATE(2030), - [sym_function_static_declaration] = STATE(2030), - [sym_global_declaration] = STATE(2030), - [sym_namespace_definition] = STATE(2030), - [sym_namespace_use_declaration] = STATE(2030), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2030), - [sym_interface_declaration] = STATE(2030), - [sym_enum_declaration] = STATE(2030), - [sym_class_declaration] = STATE(2030), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2030), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2030), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2030), - [sym_unset_statement] = STATE(2030), - [sym_declare_statement] = STATE(2030), - [sym_try_statement] = STATE(2030), - [sym_goto_statement] = STATE(2030), - [sym_continue_statement] = STATE(2030), - [sym_break_statement] = STATE(2030), - [sym_return_statement] = STATE(2030), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2030), - [sym_do_statement] = STATE(2030), - [sym_for_statement] = STATE(2030), - [sym_foreach_statement] = STATE(2030), - [sym_if_statement] = STATE(2030), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2030), - [sym_compound_statement] = STATE(2030), - [sym_named_label_statement] = STATE(2030), - [sym_expression_statement] = STATE(2030), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(496), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [83] = { - [sym_text_interpolation] = STATE(83), - [sym_empty_statement] = STATE(2022), - [sym_function_static_declaration] = STATE(2022), - [sym_global_declaration] = STATE(2022), - [sym_namespace_definition] = STATE(2022), - [sym_namespace_use_declaration] = STATE(2022), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2022), - [sym_interface_declaration] = STATE(2022), - [sym_enum_declaration] = STATE(2022), - [sym_class_declaration] = STATE(2022), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2022), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2022), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2022), - [sym_unset_statement] = STATE(2022), - [sym_declare_statement] = STATE(2022), - [sym_try_statement] = STATE(2022), - [sym_goto_statement] = STATE(2022), - [sym_continue_statement] = STATE(2022), - [sym_break_statement] = STATE(2022), - [sym_return_statement] = STATE(2022), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2022), - [sym_do_statement] = STATE(2022), - [sym_for_statement] = STATE(2022), - [sym_foreach_statement] = STATE(2022), - [sym_if_statement] = STATE(2022), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2022), - [sym_compound_statement] = STATE(2022), - [sym_named_label_statement] = STATE(2022), - [sym_expression_statement] = STATE(2022), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(496), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(410), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(412), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(414), - [aux_sym_foreach_statement_token1] = ACTIONS(416), - [aux_sym_if_statement_token1] = ACTIONS(418), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [84] = { - [sym_text_interpolation] = STATE(84), - [sym_empty_statement] = STATE(516), - [sym_function_static_declaration] = STATE(516), - [sym_global_declaration] = STATE(516), - [sym_namespace_definition] = STATE(516), - [sym_namespace_use_declaration] = STATE(516), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(516), - [sym_interface_declaration] = STATE(516), - [sym_enum_declaration] = STATE(516), - [sym_class_declaration] = STATE(516), - [sym_final_modifier] = STATE(2307), - [sym_abstract_modifier] = STATE(2307), - [sym_const_declaration] = STATE(516), - [sym__const_declaration] = STATE(483), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2392), - [sym_function_definition] = STATE(516), - [sym__function_definition_header] = STATE(2161), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(516), - [sym_unset_statement] = STATE(516), - [sym_declare_statement] = STATE(516), - [sym_try_statement] = STATE(516), - [sym_goto_statement] = STATE(516), - [sym_continue_statement] = STATE(516), - [sym_break_statement] = STATE(516), - [sym_return_statement] = STATE(516), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(516), - [sym_do_statement] = STATE(516), - [sym_for_statement] = STATE(516), - [sym_foreach_statement] = STATE(516), - [sym_if_statement] = STATE(516), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(516), - [sym_compound_statement] = STATE(516), - [sym_named_label_statement] = STATE(516), - [sym_expression_statement] = STATE(516), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1377), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(193), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(195), - [aux_sym_function_static_declaration_token1] = ACTIONS(197), - [aux_sym_global_declaration_token1] = ACTIONS(199), - [aux_sym_namespace_definition_token1] = ACTIONS(201), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(207), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [aux_sym_trait_declaration_token1] = ACTIONS(215), - [aux_sym_interface_declaration_token1] = ACTIONS(217), - [aux_sym_enum_declaration_token1] = ACTIONS(219), - [aux_sym_class_declaration_token1] = ACTIONS(223), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(237), - [anon_sym_unset] = ACTIONS(239), - [aux_sym_declare_statement_token1] = ACTIONS(325), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(245), - [aux_sym_goto_statement_token1] = ACTIONS(247), - [aux_sym_continue_statement_token1] = ACTIONS(249), - [aux_sym_break_statement_token1] = ACTIONS(251), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(253), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(327), - [aux_sym_do_statement_token1] = ACTIONS(259), - [aux_sym_for_statement_token1] = ACTIONS(329), - [aux_sym_foreach_statement_token1] = ACTIONS(331), - [aux_sym_if_statement_token1] = ACTIONS(333), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [85] = { - [sym_text_interpolation] = STATE(85), - [sym_empty_statement] = STATE(2326), - [sym_function_static_declaration] = STATE(2326), - [sym_global_declaration] = STATE(2326), - [sym_namespace_definition] = STATE(2326), - [sym_namespace_use_declaration] = STATE(2326), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_trait_declaration] = STATE(2326), - [sym_interface_declaration] = STATE(2326), - [sym_enum_declaration] = STATE(2326), - [sym_class_declaration] = STATE(2326), - [sym_final_modifier] = STATE(2411), - [sym_abstract_modifier] = STATE(2411), - [sym_const_declaration] = STATE(2326), - [sym__const_declaration] = STATE(1861), - [sym_static_modifier] = STATE(2393), - [sym_visibility_modifier] = STATE(2413), - [sym_function_definition] = STATE(2326), - [sym__function_definition_header] = STATE(2166), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2326), - [sym_unset_statement] = STATE(2326), - [sym_declare_statement] = STATE(2326), - [sym_try_statement] = STATE(2326), - [sym_goto_statement] = STATE(2326), - [sym_continue_statement] = STATE(2326), - [sym_break_statement] = STATE(2326), - [sym_return_statement] = STATE(2326), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2326), - [sym_do_statement] = STATE(2326), - [sym_for_statement] = STATE(2326), - [sym_foreach_statement] = STATE(2326), - [sym_if_statement] = STATE(2326), - [sym_match_expression] = STATE(1071), - [sym_switch_statement] = STATE(2326), - [sym_compound_statement] = STATE(2326), - [sym_named_label_statement] = STATE(2326), - [sym_expression_statement] = STATE(2326), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1380), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(354), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(496), - [aux_sym_function_static_declaration_token1] = ACTIONS(358), - [aux_sym_global_declaration_token1] = ACTIONS(360), - [aux_sym_namespace_definition_token1] = ACTIONS(362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(364), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(205), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(366), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(368), - [aux_sym_trait_declaration_token1] = ACTIONS(370), - [aux_sym_interface_declaration_token1] = ACTIONS(372), - [aux_sym_enum_declaration_token1] = ACTIONS(374), - [aux_sym_class_declaration_token1] = ACTIONS(378), - [aux_sym_final_modifier_token1] = ACTIONS(225), - [aux_sym_abstract_modifier_token1] = ACTIONS(227), - [aux_sym_visibility_modifier_token1] = ACTIONS(229), - [aux_sym_visibility_modifier_token2] = ACTIONS(229), - [aux_sym_visibility_modifier_token3] = ACTIONS(229), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [aux_sym_echo_statement_token1] = ACTIONS(380), - [anon_sym_unset] = ACTIONS(382), - [aux_sym_declare_statement_token1] = ACTIONS(384), - [sym_float] = ACTIONS(243), - [aux_sym_try_statement_token1] = ACTIONS(386), - [aux_sym_goto_statement_token1] = ACTIONS(388), - [aux_sym_continue_statement_token1] = ACTIONS(390), - [aux_sym_break_statement_token1] = ACTIONS(392), - [sym_integer] = ACTIONS(243), - [aux_sym_return_statement_token1] = ACTIONS(394), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_while_statement_token1] = ACTIONS(396), - [aux_sym_do_statement_token1] = ACTIONS(398), - [aux_sym_for_statement_token1] = ACTIONS(400), - [aux_sym_foreach_statement_token1] = ACTIONS(402), - [aux_sym_if_statement_token1] = ACTIONS(404), - [aux_sym_match_expression_token1] = ACTIONS(267), - [aux_sym_switch_statement_token1] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [86] = { - [sym_text_interpolation] = STATE(86), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(958), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(867), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(546), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_COLON] = ACTIONS(544), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_EQ_GT] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(554), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_STAR_STAR] = ACTIONS(544), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_yield_expression_token2] = ACTIONS(596), - [aux_sym_binary_expression_token1] = ACTIONS(554), - [anon_sym_QMARK_QMARK] = ACTIONS(544), - [aux_sym_binary_expression_token2] = ACTIONS(554), - [aux_sym_binary_expression_token3] = ACTIONS(554), - [aux_sym_binary_expression_token4] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_GT] = ACTIONS(544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ_EQ] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_LT_EQ_GT] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PERCENT] = ACTIONS(544), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [87] = { - [sym_text_interpolation] = STATE(87), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(985), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(867), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(546), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(544), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(544), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_EQ_GT] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(554), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_STAR_STAR] = ACTIONS(544), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(544), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_yield_expression_token2] = ACTIONS(630), - [aux_sym_binary_expression_token1] = ACTIONS(554), - [anon_sym_QMARK_QMARK] = ACTIONS(544), - [aux_sym_binary_expression_token2] = ACTIONS(554), - [aux_sym_binary_expression_token3] = ACTIONS(554), - [aux_sym_binary_expression_token4] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_GT] = ACTIONS(544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ_EQ] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_LT_EQ_GT] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PERCENT] = ACTIONS(544), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [88] = { - [sym_text_interpolation] = STATE(88), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_variadic_unpacking] = STATE(1093), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_by_ref] = STATE(1093), - [sym_yield_expression] = STATE(1050), - [sym_array_element_initializer] = STATE(1048), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(642), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(544), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_EQ_GT] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(554), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(273), - [anon_sym_STAR_STAR] = ACTIONS(544), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_yield_expression_token2] = ACTIONS(650), - [aux_sym_binary_expression_token1] = ACTIONS(554), - [anon_sym_QMARK_QMARK] = ACTIONS(544), - [aux_sym_binary_expression_token2] = ACTIONS(554), - [aux_sym_binary_expression_token3] = ACTIONS(554), - [aux_sym_binary_expression_token4] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_GT] = ACTIONS(544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ_EQ] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_LT_EQ_GT] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PERCENT] = ACTIONS(544), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(544), - [sym_heredoc] = ACTIONS(311), - }, - [89] = { - [sym_text_interpolation] = STATE(89), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1169), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(867), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(546), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(544), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_EQ_GT] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(554), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(662), - [anon_sym_STAR_STAR] = ACTIONS(544), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_yield_expression_token2] = ACTIONS(674), - [aux_sym_binary_expression_token1] = ACTIONS(554), - [anon_sym_QMARK_QMARK] = ACTIONS(544), - [aux_sym_binary_expression_token2] = ACTIONS(554), - [aux_sym_binary_expression_token3] = ACTIONS(554), - [aux_sym_binary_expression_token4] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_GT] = ACTIONS(544), - [anon_sym_EQ_EQ_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ_EQ] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_LT_EQ_GT] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_SLASH] = ACTIONS(554), - [anon_sym_PERCENT] = ACTIONS(544), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [90] = { - [sym_text_interpolation] = STATE(90), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2341), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [91] = { - [sym_text_interpolation] = STATE(91), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2376), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [92] = { - [sym_text_interpolation] = STATE(92), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2370), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [93] = { - [sym_text_interpolation] = STATE(93), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2496), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [94] = { - [sym_text_interpolation] = STATE(94), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2363), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [95] = { - [sym_text_interpolation] = STATE(95), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2370), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1251), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [96] = { - [sym_text_interpolation] = STATE(96), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2306), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1251), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [97] = { - [sym_text_interpolation] = STATE(97), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2323), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [98] = { - [sym_text_interpolation] = STATE(98), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2372), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [99] = { - [sym_text_interpolation] = STATE(99), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2390), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [100] = { - [sym_text_interpolation] = STATE(100), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_cast_type] = STATE(2461), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(684), - [aux_sym_cast_type_token2] = ACTIONS(686), - [aux_sym_cast_type_token3] = ACTIONS(686), - [aux_sym_cast_type_token4] = ACTIONS(686), - [aux_sym_cast_type_token5] = ACTIONS(686), - [aux_sym_cast_type_token6] = ACTIONS(686), - [aux_sym_cast_type_token7] = ACTIONS(686), - [aux_sym_cast_type_token8] = ACTIONS(686), - [aux_sym_cast_type_token9] = ACTIONS(686), - [aux_sym_cast_type_token10] = ACTIONS(686), - [aux_sym_cast_type_token11] = ACTIONS(686), - [aux_sym_cast_type_token12] = ACTIONS(686), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [101] = { - [sym_text_interpolation] = STATE(101), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(661), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(661), - [sym_nullsafe_member_access_expression] = STATE(661), - [sym_scoped_property_access_expression] = STATE(661), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(1884), - [sym__array_destructing_element] = STATE(1888), - [sym_function_call_expression] = STATE(644), - [sym_scoped_call_expression] = STATE(644), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(644), - [sym_nullsafe_member_call_expression] = STATE(644), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(644), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(644), - [sym_variable_name] = STATE(644), - [sym_by_ref] = STATE(2190), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1893), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym__array_destructing_repeat1] = STATE(1896), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(690), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [102] = { - [sym_text_interpolation] = STATE(102), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(661), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(661), - [sym_nullsafe_member_access_expression] = STATE(661), - [sym_scoped_property_access_expression] = STATE(661), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(1884), - [sym__array_destructing_element] = STATE(1888), - [sym_function_call_expression] = STATE(644), - [sym_scoped_call_expression] = STATE(644), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(644), - [sym_nullsafe_member_call_expression] = STATE(644), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(644), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(644), - [sym_variable_name] = STATE(644), - [sym_by_ref] = STATE(2190), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1898), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym__array_destructing_repeat1] = STATE(1896), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(694), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_RBRACK] = ACTIONS(696), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [103] = { - [sym_text_interpolation] = STATE(103), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(661), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(661), - [sym_nullsafe_member_access_expression] = STATE(661), - [sym_scoped_property_access_expression] = STATE(661), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(1884), - [sym__array_destructing_element] = STATE(1888), - [sym_function_call_expression] = STATE(644), - [sym_scoped_call_expression] = STATE(644), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(644), - [sym_nullsafe_member_call_expression] = STATE(644), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(644), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(644), - [sym_variable_name] = STATE(644), - [sym_by_ref] = STATE(2190), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1898), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym__array_destructing_repeat1] = STATE(1896), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(694), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_RBRACK] = ACTIONS(698), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [104] = { - [sym_text_interpolation] = STATE(104), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(661), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(661), - [sym_nullsafe_member_access_expression] = STATE(661), - [sym_scoped_property_access_expression] = STATE(661), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(1884), - [sym__array_destructing_element] = STATE(1888), - [sym_function_call_expression] = STATE(644), - [sym_scoped_call_expression] = STATE(644), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(644), - [sym_nullsafe_member_call_expression] = STATE(644), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(644), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(644), - [sym_variable_name] = STATE(644), - [sym_by_ref] = STATE(2190), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1898), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym__array_destructing_repeat1] = STATE(1896), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(694), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_RBRACK] = ACTIONS(700), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [105] = { - [sym_text_interpolation] = STATE(105), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(661), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(661), - [sym_nullsafe_member_access_expression] = STATE(661), - [sym_scoped_property_access_expression] = STATE(661), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(1884), - [sym__array_destructing_element] = STATE(1888), - [sym_function_call_expression] = STATE(644), - [sym_scoped_call_expression] = STATE(644), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(644), - [sym_nullsafe_member_call_expression] = STATE(644), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(644), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(644), - [sym_variable_name] = STATE(644), - [sym_by_ref] = STATE(2190), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1898), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym__array_destructing_repeat1] = STATE(1896), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(694), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_RBRACK] = ACTIONS(702), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [106] = { - [sym_text_interpolation] = STATE(106), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(1813), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(708), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [107] = { - [sym_text_interpolation] = STATE(107), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(1958), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(712), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [108] = { - [sym_text_interpolation] = STATE(108), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(1889), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(716), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [109] = { - [sym_text_interpolation] = STATE(109), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1893), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(720), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(722), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [110] = { - [sym_text_interpolation] = STATE(110), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1948), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(724), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [111] = { - [sym_text_interpolation] = STATE(111), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(1981), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(728), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [112] = { - [sym_text_interpolation] = STATE(112), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(1994), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(732), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [113] = { - [sym_text_interpolation] = STATE(113), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(1918), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(736), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [114] = { - [sym_text_interpolation] = STATE(114), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1841), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(740), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [115] = { - [sym_text_interpolation] = STATE(115), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1898), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(744), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(746), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [116] = { - [sym_text_interpolation] = STATE(116), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1891), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [117] = { - [sym_text_interpolation] = STATE(117), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [118] = { - [sym_text_interpolation] = STATE(118), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [119] = { - [sym_text_interpolation] = STATE(119), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [120] = { - [sym_text_interpolation] = STATE(120), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1891), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [121] = { - [sym_text_interpolation] = STATE(121), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1891), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(758), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [122] = { - [sym_text_interpolation] = STATE(122), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [123] = { - [sym_text_interpolation] = STATE(123), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [124] = { - [sym_text_interpolation] = STATE(124), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [125] = { - [sym_text_interpolation] = STATE(125), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1891), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [126] = { - [sym_text_interpolation] = STATE(126), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1891), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(768), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [127] = { - [sym_text_interpolation] = STATE(127), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [128] = { - [sym_text_interpolation] = STATE(128), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [129] = { - [sym_text_interpolation] = STATE(129), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1891), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(774), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [130] = { - [sym_text_interpolation] = STATE(130), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1891), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [131] = { - [sym_text_interpolation] = STATE(131), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [132] = { - [sym_text_interpolation] = STATE(132), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [133] = { - [sym_text_interpolation] = STATE(133), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [134] = { - [sym_text_interpolation] = STATE(134), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1891), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [135] = { - [sym_text_interpolation] = STATE(135), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [136] = { - [sym_text_interpolation] = STATE(136), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym_match_condition_list] = STATE(2394), - [sym_match_conditional_expression] = STATE(2142), - [sym_match_default_expression] = STATE(2142), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(788), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [aux_sym_match_default_expression_token1] = ACTIONS(790), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [137] = { - [sym_text_interpolation] = STATE(137), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(660), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(660), - [sym_nullsafe_member_access_expression] = STATE(660), - [sym_scoped_property_access_expression] = STATE(660), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(1884), - [sym__array_destructing_element] = STATE(2205), - [sym_function_call_expression] = STATE(634), - [sym_scoped_call_expression] = STATE(634), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(634), - [sym_nullsafe_member_call_expression] = STATE(634), - [sym_subscript_expression] = STATE(634), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(634), - [sym_variable_name] = STATE(634), - [sym_by_ref] = STATE(2217), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(792), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(794), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(798), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [138] = { - [sym_text_interpolation] = STATE(138), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym_match_condition_list] = STATE(2394), - [sym_match_conditional_expression] = STATE(2142), - [sym_match_default_expression] = STATE(2142), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(801), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [aux_sym_match_default_expression_token1] = ACTIONS(790), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [139] = { - [sym_text_interpolation] = STATE(139), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym_match_condition_list] = STATE(2394), - [sym_match_conditional_expression] = STATE(2142), - [sym_match_default_expression] = STATE(2142), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(803), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [aux_sym_match_default_expression_token1] = ACTIONS(790), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [140] = { - [sym_text_interpolation] = STATE(140), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1891), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [141] = { - [sym_text_interpolation] = STATE(141), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(660), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(660), - [sym_nullsafe_member_access_expression] = STATE(660), - [sym_scoped_property_access_expression] = STATE(660), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(1884), - [sym__array_destructing_element] = STATE(2205), - [sym_function_call_expression] = STATE(634), - [sym_scoped_call_expression] = STATE(634), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(634), - [sym_nullsafe_member_call_expression] = STATE(634), - [sym_subscript_expression] = STATE(634), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(634), - [sym_variable_name] = STATE(634), - [sym_by_ref] = STATE(2217), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(792), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(794), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(805), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [142] = { - [sym_text_interpolation] = STATE(142), - [sym_reference_modifier] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_argument] = STATE(2043), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2194), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(704), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [143] = { - [sym_text_interpolation] = STATE(143), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1244), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(657), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(657), - [sym_nullsafe_member_access_expression] = STATE(657), - [sym_scoped_property_access_expression] = STATE(657), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(1707), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(626), - [sym_scoped_call_expression] = STATE(626), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(626), - [sym_nullsafe_member_call_expression] = STATE(626), - [sym_subscript_expression] = STATE(626), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(626), - [sym_variable_name] = STATE(626), - [sym_by_ref] = STATE(1887), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym__list_destructing_repeat1] = STATE(1886), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(808), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(810), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [144] = { - [sym_text_interpolation] = STATE(144), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(660), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(660), - [sym_nullsafe_member_access_expression] = STATE(660), - [sym_scoped_property_access_expression] = STATE(660), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(1884), - [sym__array_destructing_element] = STATE(2205), - [sym_function_call_expression] = STATE(634), - [sym_scoped_call_expression] = STATE(634), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(634), - [sym_nullsafe_member_call_expression] = STATE(634), - [sym_subscript_expression] = STATE(634), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(634), - [sym_variable_name] = STATE(634), - [sym_by_ref] = STATE(2217), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(792), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(794), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(792), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [145] = { - [sym_text_interpolation] = STATE(145), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym_match_condition_list] = STATE(2394), - [sym_match_conditional_expression] = STATE(2142), - [sym_match_default_expression] = STATE(2142), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(812), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [aux_sym_match_default_expression_token1] = ACTIONS(790), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [146] = { - [sym_text_interpolation] = STATE(146), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(873), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(873), - [sym_yield_expression] = STATE(855), - [sym_array_element_initializer] = STATE(1891), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [147] = { - [sym_text_interpolation] = STATE(147), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym_match_condition_list] = STATE(2394), - [sym_match_conditional_expression] = STATE(1927), - [sym_match_default_expression] = STATE(1927), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [aux_sym_match_default_expression_token1] = ACTIONS(790), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [148] = { - [sym_text_interpolation] = STATE(148), - [sym_reference_modifier] = STATE(184), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2041), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(706), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [149] = { - [sym_text_interpolation] = STATE(149), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym_match_condition_list] = STATE(2394), - [sym_match_conditional_expression] = STATE(1785), - [sym_match_default_expression] = STATE(1785), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [aux_sym_match_default_expression_token1] = ACTIONS(790), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [150] = { - [sym_text_interpolation] = STATE(150), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1230), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(664), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(664), - [sym_nullsafe_member_access_expression] = STATE(664), - [sym_scoped_property_access_expression] = STATE(664), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(1925), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(651), - [sym_scoped_call_expression] = STATE(651), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(651), - [sym_nullsafe_member_call_expression] = STATE(651), - [sym_subscript_expression] = STATE(651), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(651), - [sym_variable_name] = STATE(651), - [sym_by_ref] = STATE(2168), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(814), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(814), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [151] = { - [sym_text_interpolation] = STATE(151), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym_match_condition_list] = STATE(2394), - [sym_match_conditional_expression] = STATE(2142), - [sym_match_default_expression] = STATE(2142), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [aux_sym_match_default_expression_token1] = ACTIONS(790), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [152] = { - [sym_text_interpolation] = STATE(152), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2474), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(816), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [153] = { - [sym_text_interpolation] = STATE(153), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2320), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(818), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [154] = { - [sym_text_interpolation] = STATE(154), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2439), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(820), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [155] = { - [sym_text_interpolation] = STATE(155), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2515), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(822), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [156] = { - [sym_text_interpolation] = STATE(156), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2509), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(824), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [157] = { - [sym_text_interpolation] = STATE(157), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2388), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(826), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [158] = { - [sym_text_interpolation] = STATE(158), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_foreach_pair] = STATE(2440), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1198), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2114), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(2440), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [159] = { - [sym_text_interpolation] = STATE(159), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_foreach_pair] = STATE(2359), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1197), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2079), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(2359), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [160] = { - [sym_text_interpolation] = STATE(160), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2506), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(828), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [161] = { - [sym_text_interpolation] = STATE(161), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2503), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(830), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [162] = { - [sym_text_interpolation] = STATE(162), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2501), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(832), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [163] = { - [sym_text_interpolation] = STATE(163), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2315), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(834), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [164] = { - [sym_text_interpolation] = STATE(164), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2358), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(836), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [165] = { - [sym_text_interpolation] = STATE(165), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2357), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(838), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [166] = { - [sym_text_interpolation] = STATE(166), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_foreach_pair] = STATE(2317), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1208), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2264), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(2317), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [167] = { - [sym_text_interpolation] = STATE(167), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2314), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(840), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [168] = { - [sym_text_interpolation] = STATE(168), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2436), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(842), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [169] = { - [sym_text_interpolation] = STATE(169), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2437), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(844), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [170] = { - [sym_text_interpolation] = STATE(170), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2470), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(846), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [171] = { - [sym_text_interpolation] = STATE(171), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2319), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(848), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [172] = { - [sym_text_interpolation] = STATE(172), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2435), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(850), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [173] = { - [sym_text_interpolation] = STATE(173), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2452), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(852), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [174] = { - [sym_text_interpolation] = STATE(174), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2445), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(854), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [175] = { - [sym_text_interpolation] = STATE(175), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2432), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(856), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [176] = { - [sym_text_interpolation] = STATE(176), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2443), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(858), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [177] = { - [sym_text_interpolation] = STATE(177), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2456), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(860), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [178] = { - [sym_text_interpolation] = STATE(178), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_foreach_pair] = STATE(2467), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2096), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(2467), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [179] = { - [sym_text_interpolation] = STATE(179), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__expressions] = STATE(2468), - [sym_sequence_expression] = STATE(2239), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(862), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [180] = { - [sym_text_interpolation] = STATE(180), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(857), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [181] = { - [sym_text_interpolation] = STATE(181), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(864), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(864), - [sym_heredoc] = ACTIONS(311), - }, - [182] = { - [sym_text_interpolation] = STATE(182), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(665), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(665), - [sym_nullsafe_member_access_expression] = STATE(665), - [sym_scoped_property_access_expression] = STATE(665), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(1892), - [sym_function_call_expression] = STATE(658), - [sym_scoped_call_expression] = STATE(658), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(658), - [sym_nullsafe_member_call_expression] = STATE(658), - [sym_subscript_expression] = STATE(658), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(658), - [sym_variable_name] = STATE(658), - [sym_by_ref] = STATE(2140), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [183] = { - [sym_text_interpolation] = STATE(183), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(866), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(866), - [sym_heredoc] = ACTIONS(311), - }, - [184] = { - [sym_text_interpolation] = STATE(184), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2171), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [185] = { - [sym_text_interpolation] = STATE(185), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(868), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(868), - [sym_heredoc] = ACTIONS(311), - }, - [186] = { - [sym_text_interpolation] = STATE(186), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1070), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_by_ref] = STATE(1072), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(870), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [187] = { - [sym_text_interpolation] = STATE(187), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_variadic_unpacking] = STATE(2200), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [188] = { - [sym_text_interpolation] = STATE(188), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(872), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(872), - [sym_heredoc] = ACTIONS(311), - }, - [189] = { - [sym_text_interpolation] = STATE(189), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(874), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(874), - [sym_heredoc] = ACTIONS(311), - }, - [190] = { - [sym_text_interpolation] = STATE(190), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym__expressions] = STATE(2272), - [sym_sequence_expression] = STATE(2271), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1179), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [191] = { - [sym_text_interpolation] = STATE(191), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym__expressions] = STATE(2177), - [sym_sequence_expression] = STATE(2271), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1179), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [192] = { - [sym_text_interpolation] = STATE(192), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(857), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(876), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [193] = { - [sym_text_interpolation] = STATE(193), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1152), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(857), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(876), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [194] = { - [sym_text_interpolation] = STATE(194), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1236), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2260), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(2316), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [195] = { - [sym_text_interpolation] = STATE(195), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(951), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_by_ref] = STATE(857), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(876), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [196] = { - [sym_text_interpolation] = STATE(196), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1152), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_by_ref] = STATE(857), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(688), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [197] = { - [sym_text_interpolation] = STATE(197), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1207), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(878), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(878), - [sym_heredoc] = ACTIONS(311), - }, - [198] = { - [sym_text_interpolation] = STATE(198), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_sequence_expression] = STATE(2108), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1216), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [199] = { - [sym_text_interpolation] = STATE(199), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1248), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(880), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [200] = { - [sym_text_interpolation] = STATE(200), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1260), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(882), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [201] = { - [sym_text_interpolation] = STATE(201), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(884), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [202] = { - [sym_text_interpolation] = STATE(202), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_sequence_expression] = STATE(2108), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [203] = { - [sym_text_interpolation] = STATE(203), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_sequence_expression] = STATE(2093), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1181), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [204] = { - [sym_text_interpolation] = STATE(204), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(928), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(886), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [205] = { - [sym_text_interpolation] = STATE(205), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1146), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(888), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [206] = { - [sym_text_interpolation] = STATE(206), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(890), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [207] = { - [sym_text_interpolation] = STATE(207), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1235), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [208] = { - [sym_text_interpolation] = STATE(208), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(894), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [209] = { - [sym_text_interpolation] = STATE(209), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [210] = { - [sym_text_interpolation] = STATE(210), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(898), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [211] = { - [sym_text_interpolation] = STATE(211), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(900), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [212] = { - [sym_text_interpolation] = STATE(212), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1246), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(902), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [213] = { - [sym_text_interpolation] = STATE(213), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [214] = { - [sym_text_interpolation] = STATE(214), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1044), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [215] = { - [sym_text_interpolation] = STATE(215), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1029), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [216] = { - [sym_text_interpolation] = STATE(216), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1045), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [217] = { - [sym_text_interpolation] = STATE(217), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1063), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [218] = { - [sym_text_interpolation] = STATE(218), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [219] = { - [sym_text_interpolation] = STATE(219), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(899), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [220] = { - [sym_text_interpolation] = STATE(220), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(997), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [221] = { - [sym_text_interpolation] = STATE(221), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1019), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [222] = { - [sym_text_interpolation] = STATE(222), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1066), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [223] = { - [sym_text_interpolation] = STATE(223), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(998), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [224] = { - [sym_text_interpolation] = STATE(224), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1046), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [225] = { - [sym_text_interpolation] = STATE(225), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [226] = { - [sym_text_interpolation] = STATE(226), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [227] = { - [sym_text_interpolation] = STATE(227), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [228] = { - [sym_text_interpolation] = STATE(228), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [229] = { - [sym_text_interpolation] = STATE(229), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1250), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [230] = { - [sym_text_interpolation] = STATE(230), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [231] = { - [sym_text_interpolation] = STATE(231), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [232] = { - [sym_text_interpolation] = STATE(232), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1120), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [233] = { - [sym_text_interpolation] = STATE(233), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1116), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [234] = { - [sym_text_interpolation] = STATE(234), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1107), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [235] = { - [sym_text_interpolation] = STATE(235), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1102), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [236] = { - [sym_text_interpolation] = STATE(236), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1101), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [237] = { - [sym_text_interpolation] = STATE(237), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1085), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [238] = { - [sym_text_interpolation] = STATE(238), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1083), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [239] = { - [sym_text_interpolation] = STATE(239), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1081), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [240] = { - [sym_text_interpolation] = STATE(240), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1068), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [241] = { - [sym_text_interpolation] = STATE(241), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1047), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [242] = { - [sym_text_interpolation] = STATE(242), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [243] = { - [sym_text_interpolation] = STATE(243), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1038), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [244] = { - [sym_text_interpolation] = STATE(244), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1037), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [245] = { - [sym_text_interpolation] = STATE(245), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1035), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [246] = { - [sym_text_interpolation] = STATE(246), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1032), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [247] = { - [sym_text_interpolation] = STATE(247), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1190), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [248] = { - [sym_text_interpolation] = STATE(248), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [249] = { - [sym_text_interpolation] = STATE(249), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1030), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [250] = { - [sym_text_interpolation] = STATE(250), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [251] = { - [sym_text_interpolation] = STATE(251), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [252] = { - [sym_text_interpolation] = STATE(252), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [253] = { - [sym_text_interpolation] = STATE(253), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1008), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [254] = { - [sym_text_interpolation] = STATE(254), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1009), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [255] = { - [sym_text_interpolation] = STATE(255), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1010), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [256] = { - [sym_text_interpolation] = STATE(256), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1012), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [257] = { - [sym_text_interpolation] = STATE(257), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(966), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [258] = { - [sym_text_interpolation] = STATE(258), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [259] = { - [sym_text_interpolation] = STATE(259), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1011), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [260] = { - [sym_text_interpolation] = STATE(260), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [261] = { - [sym_text_interpolation] = STATE(261), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(965), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [262] = { - [sym_text_interpolation] = STATE(262), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1192), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [263] = { - [sym_text_interpolation] = STATE(263), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(989), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [264] = { - [sym_text_interpolation] = STATE(264), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1243), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [265] = { - [sym_text_interpolation] = STATE(265), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(988), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [266] = { - [sym_text_interpolation] = STATE(266), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(987), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [267] = { - [sym_text_interpolation] = STATE(267), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1182), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [268] = { - [sym_text_interpolation] = STATE(268), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [269] = { - [sym_text_interpolation] = STATE(269), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1006), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [270] = { - [sym_text_interpolation] = STATE(270), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [271] = { - [sym_text_interpolation] = STATE(271), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [272] = { - [sym_text_interpolation] = STATE(272), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [273] = { - [sym_text_interpolation] = STATE(273), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(863), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [274] = { - [sym_text_interpolation] = STATE(274), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(967), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [275] = { - [sym_text_interpolation] = STATE(275), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [276] = { - [sym_text_interpolation] = STATE(276), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [277] = { - [sym_text_interpolation] = STATE(277), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [278] = { - [sym_text_interpolation] = STATE(278), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1117), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [279] = { - [sym_text_interpolation] = STATE(279), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(993), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [280] = { - [sym_text_interpolation] = STATE(280), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(992), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [281] = { - [sym_text_interpolation] = STATE(281), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1242), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [282] = { - [sym_text_interpolation] = STATE(282), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(991), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [283] = { - [sym_text_interpolation] = STATE(283), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1262), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [284] = { - [sym_text_interpolation] = STATE(284), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [285] = { - [sym_text_interpolation] = STATE(285), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [286] = { - [sym_text_interpolation] = STATE(286), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [287] = { - [sym_text_interpolation] = STATE(287), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [288] = { - [sym_text_interpolation] = STATE(288), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(983), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [289] = { - [sym_text_interpolation] = STATE(289), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(982), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [290] = { - [sym_text_interpolation] = STATE(290), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [291] = { - [sym_text_interpolation] = STATE(291), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(980), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [292] = { - [sym_text_interpolation] = STATE(292), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1266), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [293] = { - [sym_text_interpolation] = STATE(293), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(979), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [294] = { - [sym_text_interpolation] = STATE(294), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(978), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [295] = { - [sym_text_interpolation] = STATE(295), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1086), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [296] = { - [sym_text_interpolation] = STATE(296), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(977), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [297] = { - [sym_text_interpolation] = STATE(297), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1265), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [298] = { - [sym_text_interpolation] = STATE(298), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [299] = { - [sym_text_interpolation] = STATE(299), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1065), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [300] = { - [sym_text_interpolation] = STATE(300), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1110), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [301] = { - [sym_text_interpolation] = STATE(301), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [302] = { - [sym_text_interpolation] = STATE(302), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [303] = { - [sym_text_interpolation] = STATE(303), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1094), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [304] = { - [sym_text_interpolation] = STATE(304), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [305] = { - [sym_text_interpolation] = STATE(305), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(975), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [306] = { - [sym_text_interpolation] = STATE(306), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1258), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [307] = { - [sym_text_interpolation] = STATE(307), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1267), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [308] = { - [sym_text_interpolation] = STATE(308), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(954), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [309] = { - [sym_text_interpolation] = STATE(309), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1043), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [310] = { - [sym_text_interpolation] = STATE(310), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [311] = { - [sym_text_interpolation] = STATE(311), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1097), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [312] = { - [sym_text_interpolation] = STATE(312), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [313] = { - [sym_text_interpolation] = STATE(313), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1099), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [314] = { - [sym_text_interpolation] = STATE(314), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(974), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [315] = { - [sym_text_interpolation] = STATE(315), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(973), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [316] = { - [sym_text_interpolation] = STATE(316), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [317] = { - [sym_text_interpolation] = STATE(317), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1108), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [318] = { - [sym_text_interpolation] = STATE(318), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1264), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [319] = { - [sym_text_interpolation] = STATE(319), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1115), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [320] = { - [sym_text_interpolation] = STATE(320), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(971), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [321] = { - [sym_text_interpolation] = STATE(321), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1261), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [322] = { - [sym_text_interpolation] = STATE(322), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(972), - [sym__expression] = STATE(969), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(637), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(637), - [sym_nullsafe_member_access_expression] = STATE(637), - [sym_scoped_property_access_expression] = STATE(637), - [sym_list_literal] = STATE(2346), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(628), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [aux_sym_require_expression_token1] = ACTIONS(636), - [aux_sym_require_once_expression_token1] = ACTIONS(638), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [323] = { - [sym_text_interpolation] = STATE(323), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [324] = { - [sym_text_interpolation] = STATE(324), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [325] = { - [sym_text_interpolation] = STATE(325), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [326] = { - [sym_text_interpolation] = STATE(326), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1148), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [327] = { - [sym_text_interpolation] = STATE(327), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [328] = { - [sym_text_interpolation] = STATE(328), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1252), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [329] = { - [sym_text_interpolation] = STATE(329), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1257), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [330] = { - [sym_text_interpolation] = STATE(330), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [331] = { - [sym_text_interpolation] = STATE(331), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1074), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [332] = { - [sym_text_interpolation] = STATE(332), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1049), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [333] = { - [sym_text_interpolation] = STATE(333), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1168), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [334] = { - [sym_text_interpolation] = STATE(334), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1239), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [335] = { - [sym_text_interpolation] = STATE(335), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [336] = { - [sym_text_interpolation] = STATE(336), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1245), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [337] = { - [sym_text_interpolation] = STATE(337), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(963), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [338] = { - [sym_text_interpolation] = STATE(338), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(962), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [339] = { - [sym_text_interpolation] = STATE(339), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [340] = { - [sym_text_interpolation] = STATE(340), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(863), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [341] = { - [sym_text_interpolation] = STATE(341), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [342] = { - [sym_text_interpolation] = STATE(342), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1201), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [343] = { - [sym_text_interpolation] = STATE(343), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1161), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [344] = { - [sym_text_interpolation] = STATE(344), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(960), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [345] = { - [sym_text_interpolation] = STATE(345), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [346] = { - [sym_text_interpolation] = STATE(346), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(863), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [347] = { - [sym_text_interpolation] = STATE(347), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1057), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [348] = { - [sym_text_interpolation] = STATE(348), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(957), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [349] = { - [sym_text_interpolation] = STATE(349), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(956), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [350] = { - [sym_text_interpolation] = STATE(350), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(955), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [351] = { - [sym_text_interpolation] = STATE(351), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(953), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [352] = { - [sym_text_interpolation] = STATE(352), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1059), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [353] = { - [sym_text_interpolation] = STATE(353), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1041), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [354] = { - [sym_text_interpolation] = STATE(354), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1165), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [355] = { - [sym_text_interpolation] = STATE(355), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1103), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [356] = { - [sym_text_interpolation] = STATE(356), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1170), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [357] = { - [sym_text_interpolation] = STATE(357), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [358] = { - [sym_text_interpolation] = STATE(358), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1171), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [359] = { - [sym_text_interpolation] = STATE(359), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(948), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [360] = { - [sym_text_interpolation] = STATE(360), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1172), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [361] = { - [sym_text_interpolation] = STATE(361), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1104), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [362] = { - [sym_text_interpolation] = STATE(362), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1174), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [363] = { - [sym_text_interpolation] = STATE(363), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1129), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [364] = { - [sym_text_interpolation] = STATE(364), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(947), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [365] = { - [sym_text_interpolation] = STATE(365), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(946), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [366] = { - [sym_text_interpolation] = STATE(366), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [367] = { - [sym_text_interpolation] = STATE(367), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(945), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [368] = { - [sym_text_interpolation] = STATE(368), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1173), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [369] = { - [sym_text_interpolation] = STATE(369), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [370] = { - [sym_text_interpolation] = STATE(370), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(944), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [371] = { - [sym_text_interpolation] = STATE(371), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(943), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [372] = { - [sym_text_interpolation] = STATE(372), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(942), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [373] = { - [sym_text_interpolation] = STATE(373), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(940), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [374] = { - [sym_text_interpolation] = STATE(374), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(939), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [375] = { - [sym_text_interpolation] = STATE(375), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(938), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [376] = { - [sym_text_interpolation] = STATE(376), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(935), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [377] = { - [sym_text_interpolation] = STATE(377), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1164), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [378] = { - [sym_text_interpolation] = STATE(378), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(934), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [379] = { - [sym_text_interpolation] = STATE(379), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(932), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [380] = { - [sym_text_interpolation] = STATE(380), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(930), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [381] = { - [sym_text_interpolation] = STATE(381), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [382] = { - [sym_text_interpolation] = STATE(382), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(929), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [383] = { - [sym_text_interpolation] = STATE(383), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(899), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [384] = { - [sym_text_interpolation] = STATE(384), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [385] = { - [sym_text_interpolation] = STATE(385), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(927), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [386] = { - [sym_text_interpolation] = STATE(386), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1162), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [387] = { - [sym_text_interpolation] = STATE(387), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(923), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [388] = { - [sym_text_interpolation] = STATE(388), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1238), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [389] = { - [sym_text_interpolation] = STATE(389), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1234), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [390] = { - [sym_text_interpolation] = STATE(390), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1160), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [391] = { - [sym_text_interpolation] = STATE(391), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1126), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [392] = { - [sym_text_interpolation] = STATE(392), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [393] = { - [sym_text_interpolation] = STATE(393), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1155), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [394] = { - [sym_text_interpolation] = STATE(394), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1154), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [395] = { - [sym_text_interpolation] = STATE(395), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1153), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [396] = { - [sym_text_interpolation] = STATE(396), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(949), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [397] = { - [sym_text_interpolation] = STATE(397), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1150), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [398] = { - [sym_text_interpolation] = STATE(398), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1127), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [399] = { - [sym_text_interpolation] = STATE(399), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1147), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [400] = { - [sym_text_interpolation] = STATE(400), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(899), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [401] = { - [sym_text_interpolation] = STATE(401), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1145), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [402] = { - [sym_text_interpolation] = STATE(402), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [403] = { - [sym_text_interpolation] = STATE(403), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [404] = { - [sym_text_interpolation] = STATE(404), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(950), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [405] = { - [sym_text_interpolation] = STATE(405), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1232), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [406] = { - [sym_text_interpolation] = STATE(406), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(937), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [407] = { - [sym_text_interpolation] = STATE(407), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1130), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [408] = { - [sym_text_interpolation] = STATE(408), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1156), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [409] = { - [sym_text_interpolation] = STATE(409), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(936), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [410] = { - [sym_text_interpolation] = STATE(410), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1014), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [411] = { - [sym_text_interpolation] = STATE(411), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(961), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [412] = { - [sym_text_interpolation] = STATE(412), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(928), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [413] = { - [sym_text_interpolation] = STATE(413), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1128), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [414] = { - [sym_text_interpolation] = STATE(414), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1143), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [415] = { - [sym_text_interpolation] = STATE(415), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(959), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [416] = { - [sym_text_interpolation] = STATE(416), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1018), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [417] = { - [sym_text_interpolation] = STATE(417), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1142), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [418] = { - [sym_text_interpolation] = STATE(418), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1141), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [419] = { - [sym_text_interpolation] = STATE(419), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [420] = { - [sym_text_interpolation] = STATE(420), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1139), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [421] = { - [sym_text_interpolation] = STATE(421), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1020), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [422] = { - [sym_text_interpolation] = STATE(422), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1146), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [423] = { - [sym_text_interpolation] = STATE(423), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1138), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [424] = { - [sym_text_interpolation] = STATE(424), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1137), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [425] = { - [sym_text_interpolation] = STATE(425), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1251), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [426] = { - [sym_text_interpolation] = STATE(426), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1136), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [427] = { - [sym_text_interpolation] = STATE(427), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1135), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [428] = { - [sym_text_interpolation] = STATE(428), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(952), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [429] = { - [sym_text_interpolation] = STATE(429), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(941), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [430] = { - [sym_text_interpolation] = STATE(430), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1149), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [431] = { - [sym_text_interpolation] = STATE(431), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(933), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [432] = { - [sym_text_interpolation] = STATE(432), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1088), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [433] = { - [sym_text_interpolation] = STATE(433), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1134), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [434] = { - [sym_text_interpolation] = STATE(434), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(931), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [435] = { - [sym_text_interpolation] = STATE(435), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(920), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [436] = { - [sym_text_interpolation] = STATE(436), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1133), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [437] = { - [sym_text_interpolation] = STATE(437), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1132), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [438] = { - [sym_text_interpolation] = STATE(438), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(919), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [439] = { - [sym_text_interpolation] = STATE(439), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1131), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [440] = { - [sym_text_interpolation] = STATE(440), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(918), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [441] = { - [sym_text_interpolation] = STATE(441), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(917), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [442] = { - [sym_text_interpolation] = STATE(442), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(922), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [443] = { - [sym_text_interpolation] = STATE(443), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(924), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [444] = { - [sym_text_interpolation] = STATE(444), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(925), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [445] = { - [sym_text_interpolation] = STATE(445), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(926), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [446] = { - [sym_text_interpolation] = STATE(446), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1157), - [sym__expression] = STATE(1209), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(663), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(663), - [sym_nullsafe_member_access_expression] = STATE(663), - [sym_scoped_property_access_expression] = STATE(663), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(638), - [sym_scoped_call_expression] = STATE(638), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(638), - [sym_nullsafe_member_call_expression] = STATE(638), - [sym_subscript_expression] = STATE(638), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(638), - [sym_variable_name] = STATE(638), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(672), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [aux_sym_require_expression_token1] = ACTIONS(680), - [aux_sym_require_once_expression_token1] = ACTIONS(682), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [447] = { - [sym_text_interpolation] = STATE(447), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1247), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [448] = { - [sym_text_interpolation] = STATE(448), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [449] = { - [sym_text_interpolation] = STATE(449), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(964), - [sym__expression] = STATE(1222), - [sym__unary_expression] = STATE(858), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(621), - [sym_assignment_expression] = STATE(855), - [sym_reference_assignment_expression] = STATE(855), - [sym_conditional_expression] = STATE(855), - [sym_augmented_assignment_expression] = STATE(855), - [sym_member_access_expression] = STATE(621), - [sym_nullsafe_member_access_expression] = STATE(621), - [sym_scoped_property_access_expression] = STATE(621), - [sym_list_literal] = STATE(2313), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym_yield_expression] = STATE(855), - [sym_binary_expression] = STATE(855), - [sym_include_expression] = STATE(855), - [sym_include_once_expression] = STATE(855), - [sym_require_expression] = STATE(855), - [sym_require_once_expression] = STATE(855), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_yield_expression_token1] = ACTIONS(594), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [aux_sym_require_expression_token1] = ACTIONS(602), - [aux_sym_require_once_expression_token1] = ACTIONS(604), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [450] = { - [sym_text_interpolation] = STATE(450), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1071), - [sym__expression] = STATE(1092), - [sym__unary_expression] = STATE(1067), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(659), - [sym_assignment_expression] = STATE(1050), - [sym_reference_assignment_expression] = STATE(1050), - [sym_conditional_expression] = STATE(1050), - [sym_augmented_assignment_expression] = STATE(1050), - [sym_member_access_expression] = STATE(659), - [sym_nullsafe_member_access_expression] = STATE(659), - [sym_scoped_property_access_expression] = STATE(659), - [sym_list_literal] = STATE(2349), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(627), - [sym_scoped_call_expression] = STATE(627), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(627), - [sym_nullsafe_member_call_expression] = STATE(627), - [sym_subscript_expression] = STATE(627), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(627), - [sym_variable_name] = STATE(627), - [sym_yield_expression] = STATE(1050), - [sym_binary_expression] = STATE(1050), - [sym_include_expression] = STATE(1050), - [sym_include_once_expression] = STATE(1050), - [sym_require_expression] = STATE(1050), - [sym_require_once_expression] = STATE(1050), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_yield_expression_token1] = ACTIONS(301), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [aux_sym_require_expression_token1] = ACTIONS(307), - [aux_sym_require_once_expression_token1] = ACTIONS(309), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [451] = { - [sym_text_interpolation] = STATE(451), - [sym_catch_clause] = STATE(459), - [sym_finally_clause] = STATE(459), - [aux_sym_try_statement_repeat1] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(904), - [sym_name] = ACTIONS(906), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(904), - [aux_sym_function_static_declaration_token1] = ACTIONS(906), - [aux_sym_global_declaration_token1] = ACTIONS(906), - [aux_sym_namespace_definition_token1] = ACTIONS(906), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(906), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(906), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(906), - [anon_sym_BSLASH] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_RBRACE] = ACTIONS(904), - [aux_sym_trait_declaration_token1] = ACTIONS(906), - [aux_sym_interface_declaration_token1] = ACTIONS(906), - [aux_sym_enum_declaration_token1] = ACTIONS(906), - [aux_sym_enum_case_token1] = ACTIONS(906), - [aux_sym_class_declaration_token1] = ACTIONS(906), - [aux_sym_final_modifier_token1] = ACTIONS(906), - [aux_sym_abstract_modifier_token1] = ACTIONS(906), - [aux_sym_visibility_modifier_token1] = ACTIONS(906), - [aux_sym_visibility_modifier_token2] = ACTIONS(906), - [aux_sym_visibility_modifier_token3] = ACTIONS(906), - [aux_sym_arrow_function_token1] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(904), - [aux_sym_cast_type_token1] = ACTIONS(906), - [aux_sym_echo_statement_token1] = ACTIONS(906), - [anon_sym_unset] = ACTIONS(906), - [aux_sym_declare_statement_token1] = ACTIONS(906), - [aux_sym_declare_statement_token2] = ACTIONS(906), - [sym_float] = ACTIONS(906), - [aux_sym_try_statement_token1] = ACTIONS(906), - [aux_sym_catch_clause_token1] = ACTIONS(908), - [aux_sym_finally_clause_token1] = ACTIONS(910), - [aux_sym_goto_statement_token1] = ACTIONS(906), - [aux_sym_continue_statement_token1] = ACTIONS(906), - [aux_sym_break_statement_token1] = ACTIONS(906), - [sym_integer] = ACTIONS(906), - [aux_sym_return_statement_token1] = ACTIONS(906), - [aux_sym_throw_expression_token1] = ACTIONS(906), - [aux_sym_while_statement_token1] = ACTIONS(906), - [aux_sym_while_statement_token2] = ACTIONS(906), - [aux_sym_do_statement_token1] = ACTIONS(906), - [aux_sym_for_statement_token1] = ACTIONS(906), - [aux_sym_for_statement_token2] = ACTIONS(906), - [aux_sym_foreach_statement_token1] = ACTIONS(906), - [aux_sym_foreach_statement_token2] = ACTIONS(906), - [aux_sym_if_statement_token1] = ACTIONS(906), - [aux_sym_if_statement_token2] = ACTIONS(906), - [aux_sym_else_if_clause_token1] = ACTIONS(906), - [aux_sym_else_clause_token1] = ACTIONS(906), - [aux_sym_match_expression_token1] = ACTIONS(906), - [aux_sym_match_default_expression_token1] = ACTIONS(906), - [aux_sym_switch_statement_token1] = ACTIONS(906), - [aux_sym_switch_block_token1] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [aux_sym_clone_expression_token1] = ACTIONS(906), - [aux_sym_print_intrinsic_token1] = ACTIONS(906), - [aux_sym_object_creation_expression_token1] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(904), - [sym_shell_command_expression] = ACTIONS(904), - [aux_sym__list_destructing_token1] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_self] = ACTIONS(906), - [anon_sym_parent] = ACTIONS(906), - [anon_sym_POUND_LBRACK] = ACTIONS(904), - [aux_sym_encapsed_string_token1] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [aux_sym_string_token1] = ACTIONS(904), - [sym_boolean] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(904), - [aux_sym_yield_expression_token1] = ACTIONS(906), - [aux_sym_include_expression_token1] = ACTIONS(906), - [aux_sym_include_once_expression_token1] = ACTIONS(906), - [aux_sym_require_expression_token1] = ACTIONS(906), - [aux_sym_require_once_expression_token1] = ACTIONS(906), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(904), - }, - [452] = { - [sym_text_interpolation] = STATE(452), - [sym_catch_clause] = STATE(459), - [sym_finally_clause] = STATE(459), - [aux_sym_try_statement_repeat1] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(912), - [sym_name] = ACTIONS(914), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(912), - [aux_sym_function_static_declaration_token1] = ACTIONS(914), - [aux_sym_global_declaration_token1] = ACTIONS(914), - [aux_sym_namespace_definition_token1] = ACTIONS(914), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(914), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(914), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(914), - [anon_sym_BSLASH] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [aux_sym_trait_declaration_token1] = ACTIONS(914), - [aux_sym_interface_declaration_token1] = ACTIONS(914), - [aux_sym_enum_declaration_token1] = ACTIONS(914), - [aux_sym_enum_case_token1] = ACTIONS(914), - [aux_sym_class_declaration_token1] = ACTIONS(914), - [aux_sym_final_modifier_token1] = ACTIONS(914), - [aux_sym_abstract_modifier_token1] = ACTIONS(914), - [aux_sym_visibility_modifier_token1] = ACTIONS(914), - [aux_sym_visibility_modifier_token2] = ACTIONS(914), - [aux_sym_visibility_modifier_token3] = ACTIONS(914), - [aux_sym_arrow_function_token1] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(912), - [aux_sym_cast_type_token1] = ACTIONS(914), - [aux_sym_echo_statement_token1] = ACTIONS(914), - [anon_sym_unset] = ACTIONS(914), - [aux_sym_declare_statement_token1] = ACTIONS(914), - [aux_sym_declare_statement_token2] = ACTIONS(914), - [sym_float] = ACTIONS(914), - [aux_sym_try_statement_token1] = ACTIONS(914), - [aux_sym_catch_clause_token1] = ACTIONS(916), - [aux_sym_finally_clause_token1] = ACTIONS(919), - [aux_sym_goto_statement_token1] = ACTIONS(914), - [aux_sym_continue_statement_token1] = ACTIONS(914), - [aux_sym_break_statement_token1] = ACTIONS(914), - [sym_integer] = ACTIONS(914), - [aux_sym_return_statement_token1] = ACTIONS(914), - [aux_sym_throw_expression_token1] = ACTIONS(914), - [aux_sym_while_statement_token1] = ACTIONS(914), - [aux_sym_while_statement_token2] = ACTIONS(914), - [aux_sym_do_statement_token1] = ACTIONS(914), - [aux_sym_for_statement_token1] = ACTIONS(914), - [aux_sym_for_statement_token2] = ACTIONS(914), - [aux_sym_foreach_statement_token1] = ACTIONS(914), - [aux_sym_foreach_statement_token2] = ACTIONS(914), - [aux_sym_if_statement_token1] = ACTIONS(914), - [aux_sym_if_statement_token2] = ACTIONS(914), - [aux_sym_else_if_clause_token1] = ACTIONS(914), - [aux_sym_else_clause_token1] = ACTIONS(914), - [aux_sym_match_expression_token1] = ACTIONS(914), - [aux_sym_match_default_expression_token1] = ACTIONS(914), - [aux_sym_switch_statement_token1] = ACTIONS(914), - [aux_sym_switch_block_token1] = ACTIONS(914), - [anon_sym_AT] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [aux_sym_clone_expression_token1] = ACTIONS(914), - [aux_sym_print_intrinsic_token1] = ACTIONS(914), - [aux_sym_object_creation_expression_token1] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(912), - [sym_shell_command_expression] = ACTIONS(912), - [aux_sym__list_destructing_token1] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(912), - [anon_sym_self] = ACTIONS(914), - [anon_sym_parent] = ACTIONS(914), - [anon_sym_POUND_LBRACK] = ACTIONS(912), - [aux_sym_encapsed_string_token1] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [aux_sym_string_token1] = ACTIONS(912), - [sym_boolean] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(912), - [aux_sym_yield_expression_token1] = ACTIONS(914), - [aux_sym_include_expression_token1] = ACTIONS(914), - [aux_sym_include_once_expression_token1] = ACTIONS(914), - [aux_sym_require_expression_token1] = ACTIONS(914), - [aux_sym_require_once_expression_token1] = ACTIONS(914), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(912), - }, - [453] = { - [sym_text_interpolation] = STATE(453), - [sym_else_if_clause] = STATE(554), - [sym_else_clause] = STATE(552), - [aux_sym_if_statement_repeat1] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(922), - [sym_name] = ACTIONS(924), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(922), - [aux_sym_function_static_declaration_token1] = ACTIONS(924), - [aux_sym_global_declaration_token1] = ACTIONS(924), - [aux_sym_namespace_definition_token1] = ACTIONS(924), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(924), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(924), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(924), - [anon_sym_BSLASH] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [aux_sym_trait_declaration_token1] = ACTIONS(924), - [aux_sym_interface_declaration_token1] = ACTIONS(924), - [aux_sym_enum_declaration_token1] = ACTIONS(924), - [aux_sym_enum_case_token1] = ACTIONS(924), - [aux_sym_class_declaration_token1] = ACTIONS(924), - [aux_sym_final_modifier_token1] = ACTIONS(924), - [aux_sym_abstract_modifier_token1] = ACTIONS(924), - [aux_sym_visibility_modifier_token1] = ACTIONS(924), - [aux_sym_visibility_modifier_token2] = ACTIONS(924), - [aux_sym_visibility_modifier_token3] = ACTIONS(924), - [aux_sym_arrow_function_token1] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(922), - [aux_sym_cast_type_token1] = ACTIONS(924), - [aux_sym_echo_statement_token1] = ACTIONS(924), - [anon_sym_unset] = ACTIONS(924), - [aux_sym_declare_statement_token1] = ACTIONS(924), - [aux_sym_declare_statement_token2] = ACTIONS(924), - [sym_float] = ACTIONS(924), - [aux_sym_try_statement_token1] = ACTIONS(924), - [aux_sym_goto_statement_token1] = ACTIONS(924), - [aux_sym_continue_statement_token1] = ACTIONS(924), - [aux_sym_break_statement_token1] = ACTIONS(924), - [sym_integer] = ACTIONS(924), - [aux_sym_return_statement_token1] = ACTIONS(924), - [aux_sym_throw_expression_token1] = ACTIONS(924), - [aux_sym_while_statement_token1] = ACTIONS(924), - [aux_sym_while_statement_token2] = ACTIONS(924), - [aux_sym_do_statement_token1] = ACTIONS(924), - [aux_sym_for_statement_token1] = ACTIONS(924), - [aux_sym_for_statement_token2] = ACTIONS(924), - [aux_sym_foreach_statement_token1] = ACTIONS(924), - [aux_sym_foreach_statement_token2] = ACTIONS(924), - [aux_sym_if_statement_token1] = ACTIONS(924), - [aux_sym_if_statement_token2] = ACTIONS(924), - [aux_sym_else_if_clause_token1] = ACTIONS(926), - [aux_sym_else_clause_token1] = ACTIONS(928), - [aux_sym_match_expression_token1] = ACTIONS(924), - [aux_sym_match_default_expression_token1] = ACTIONS(924), - [aux_sym_switch_statement_token1] = ACTIONS(924), - [aux_sym_switch_block_token1] = ACTIONS(924), - [anon_sym_AT] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [aux_sym_clone_expression_token1] = ACTIONS(924), - [aux_sym_print_intrinsic_token1] = ACTIONS(924), - [aux_sym_object_creation_expression_token1] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(922), - [sym_shell_command_expression] = ACTIONS(922), - [aux_sym__list_destructing_token1] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_self] = ACTIONS(924), - [anon_sym_parent] = ACTIONS(924), - [anon_sym_POUND_LBRACK] = ACTIONS(922), - [aux_sym_encapsed_string_token1] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [aux_sym_string_token1] = ACTIONS(922), - [sym_boolean] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(922), - [aux_sym_yield_expression_token1] = ACTIONS(924), - [aux_sym_include_expression_token1] = ACTIONS(924), - [aux_sym_include_once_expression_token1] = ACTIONS(924), - [aux_sym_require_expression_token1] = ACTIONS(924), - [aux_sym_require_once_expression_token1] = ACTIONS(924), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(922), - }, - [454] = { - [sym_text_interpolation] = STATE(454), - [sym_else_if_clause] = STATE(554), - [sym_else_clause] = STATE(515), - [aux_sym_if_statement_repeat1] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(930), - [sym_name] = ACTIONS(932), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(930), - [aux_sym_function_static_declaration_token1] = ACTIONS(932), - [aux_sym_global_declaration_token1] = ACTIONS(932), - [aux_sym_namespace_definition_token1] = ACTIONS(932), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(932), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(932), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(932), - [anon_sym_BSLASH] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [aux_sym_trait_declaration_token1] = ACTIONS(932), - [aux_sym_interface_declaration_token1] = ACTIONS(932), - [aux_sym_enum_declaration_token1] = ACTIONS(932), - [aux_sym_enum_case_token1] = ACTIONS(932), - [aux_sym_class_declaration_token1] = ACTIONS(932), - [aux_sym_final_modifier_token1] = ACTIONS(932), - [aux_sym_abstract_modifier_token1] = ACTIONS(932), - [aux_sym_visibility_modifier_token1] = ACTIONS(932), - [aux_sym_visibility_modifier_token2] = ACTIONS(932), - [aux_sym_visibility_modifier_token3] = ACTIONS(932), - [aux_sym_arrow_function_token1] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [aux_sym_cast_type_token1] = ACTIONS(932), - [aux_sym_echo_statement_token1] = ACTIONS(932), - [anon_sym_unset] = ACTIONS(932), - [aux_sym_declare_statement_token1] = ACTIONS(932), - [aux_sym_declare_statement_token2] = ACTIONS(932), - [sym_float] = ACTIONS(932), - [aux_sym_try_statement_token1] = ACTIONS(932), - [aux_sym_goto_statement_token1] = ACTIONS(932), - [aux_sym_continue_statement_token1] = ACTIONS(932), - [aux_sym_break_statement_token1] = ACTIONS(932), - [sym_integer] = ACTIONS(932), - [aux_sym_return_statement_token1] = ACTIONS(932), - [aux_sym_throw_expression_token1] = ACTIONS(932), - [aux_sym_while_statement_token1] = ACTIONS(932), - [aux_sym_while_statement_token2] = ACTIONS(932), - [aux_sym_do_statement_token1] = ACTIONS(932), - [aux_sym_for_statement_token1] = ACTIONS(932), - [aux_sym_for_statement_token2] = ACTIONS(932), - [aux_sym_foreach_statement_token1] = ACTIONS(932), - [aux_sym_foreach_statement_token2] = ACTIONS(932), - [aux_sym_if_statement_token1] = ACTIONS(932), - [aux_sym_if_statement_token2] = ACTIONS(932), - [aux_sym_else_if_clause_token1] = ACTIONS(934), - [aux_sym_else_clause_token1] = ACTIONS(937), - [aux_sym_match_expression_token1] = ACTIONS(932), - [aux_sym_match_default_expression_token1] = ACTIONS(932), - [aux_sym_switch_statement_token1] = ACTIONS(932), - [aux_sym_switch_block_token1] = ACTIONS(932), - [anon_sym_AT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [aux_sym_clone_expression_token1] = ACTIONS(932), - [aux_sym_print_intrinsic_token1] = ACTIONS(932), - [aux_sym_object_creation_expression_token1] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(930), - [sym_shell_command_expression] = ACTIONS(930), - [aux_sym__list_destructing_token1] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_self] = ACTIONS(932), - [anon_sym_parent] = ACTIONS(932), - [anon_sym_POUND_LBRACK] = ACTIONS(930), - [aux_sym_encapsed_string_token1] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [aux_sym_string_token1] = ACTIONS(930), - [sym_boolean] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(930), - [aux_sym_yield_expression_token1] = ACTIONS(932), - [aux_sym_include_expression_token1] = ACTIONS(932), - [aux_sym_include_once_expression_token1] = ACTIONS(932), - [aux_sym_require_expression_token1] = ACTIONS(932), - [aux_sym_require_once_expression_token1] = ACTIONS(932), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(930), - }, - [455] = { - [sym_text_interpolation] = STATE(455), - [sym_else_if_clause] = STATE(554), - [sym_else_clause] = STATE(552), - [aux_sym_if_statement_repeat1] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(922), - [sym_name] = ACTIONS(924), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(922), - [aux_sym_function_static_declaration_token1] = ACTIONS(924), - [aux_sym_global_declaration_token1] = ACTIONS(924), - [aux_sym_namespace_definition_token1] = ACTIONS(924), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(924), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(924), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(924), - [anon_sym_BSLASH] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [aux_sym_trait_declaration_token1] = ACTIONS(924), - [aux_sym_interface_declaration_token1] = ACTIONS(924), - [aux_sym_enum_declaration_token1] = ACTIONS(924), - [aux_sym_enum_case_token1] = ACTIONS(924), - [aux_sym_class_declaration_token1] = ACTIONS(924), - [aux_sym_final_modifier_token1] = ACTIONS(924), - [aux_sym_abstract_modifier_token1] = ACTIONS(924), - [aux_sym_visibility_modifier_token1] = ACTIONS(924), - [aux_sym_visibility_modifier_token2] = ACTIONS(924), - [aux_sym_visibility_modifier_token3] = ACTIONS(924), - [aux_sym_arrow_function_token1] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(922), - [aux_sym_cast_type_token1] = ACTIONS(924), - [aux_sym_echo_statement_token1] = ACTIONS(924), - [anon_sym_unset] = ACTIONS(924), - [aux_sym_declare_statement_token1] = ACTIONS(924), - [aux_sym_declare_statement_token2] = ACTIONS(924), - [sym_float] = ACTIONS(924), - [aux_sym_try_statement_token1] = ACTIONS(924), - [aux_sym_goto_statement_token1] = ACTIONS(924), - [aux_sym_continue_statement_token1] = ACTIONS(924), - [aux_sym_break_statement_token1] = ACTIONS(924), - [sym_integer] = ACTIONS(924), - [aux_sym_return_statement_token1] = ACTIONS(924), - [aux_sym_throw_expression_token1] = ACTIONS(924), - [aux_sym_while_statement_token1] = ACTIONS(924), - [aux_sym_while_statement_token2] = ACTIONS(924), - [aux_sym_do_statement_token1] = ACTIONS(924), - [aux_sym_for_statement_token1] = ACTIONS(924), - [aux_sym_for_statement_token2] = ACTIONS(924), - [aux_sym_foreach_statement_token1] = ACTIONS(924), - [aux_sym_foreach_statement_token2] = ACTIONS(924), - [aux_sym_if_statement_token1] = ACTIONS(924), - [aux_sym_if_statement_token2] = ACTIONS(924), - [aux_sym_else_if_clause_token1] = ACTIONS(940), - [aux_sym_else_clause_token1] = ACTIONS(943), - [aux_sym_match_expression_token1] = ACTIONS(924), - [aux_sym_match_default_expression_token1] = ACTIONS(924), - [aux_sym_switch_statement_token1] = ACTIONS(924), - [aux_sym_switch_block_token1] = ACTIONS(924), - [anon_sym_AT] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [aux_sym_clone_expression_token1] = ACTIONS(924), - [aux_sym_print_intrinsic_token1] = ACTIONS(924), - [aux_sym_object_creation_expression_token1] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(922), - [sym_shell_command_expression] = ACTIONS(922), - [aux_sym__list_destructing_token1] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_self] = ACTIONS(924), - [anon_sym_parent] = ACTIONS(924), - [anon_sym_POUND_LBRACK] = ACTIONS(922), - [aux_sym_encapsed_string_token1] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [aux_sym_string_token1] = ACTIONS(922), - [sym_boolean] = ACTIONS(924), - [sym_null] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(922), - [aux_sym_yield_expression_token1] = ACTIONS(924), - [aux_sym_include_expression_token1] = ACTIONS(924), - [aux_sym_include_once_expression_token1] = ACTIONS(924), - [aux_sym_require_expression_token1] = ACTIONS(924), - [aux_sym_require_once_expression_token1] = ACTIONS(924), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(922), - }, - [456] = { - [sym_text_interpolation] = STATE(456), - [sym_else_if_clause] = STATE(554), - [sym_else_clause] = STATE(515), - [aux_sym_if_statement_repeat1] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(930), - [sym_name] = ACTIONS(932), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(930), - [aux_sym_function_static_declaration_token1] = ACTIONS(932), - [aux_sym_global_declaration_token1] = ACTIONS(932), - [aux_sym_namespace_definition_token1] = ACTIONS(932), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(932), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(932), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(932), - [anon_sym_BSLASH] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [aux_sym_trait_declaration_token1] = ACTIONS(932), - [aux_sym_interface_declaration_token1] = ACTIONS(932), - [aux_sym_enum_declaration_token1] = ACTIONS(932), - [aux_sym_enum_case_token1] = ACTIONS(932), - [aux_sym_class_declaration_token1] = ACTIONS(932), - [aux_sym_final_modifier_token1] = ACTIONS(932), - [aux_sym_abstract_modifier_token1] = ACTIONS(932), - [aux_sym_visibility_modifier_token1] = ACTIONS(932), - [aux_sym_visibility_modifier_token2] = ACTIONS(932), - [aux_sym_visibility_modifier_token3] = ACTIONS(932), - [aux_sym_arrow_function_token1] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [aux_sym_cast_type_token1] = ACTIONS(932), - [aux_sym_echo_statement_token1] = ACTIONS(932), - [anon_sym_unset] = ACTIONS(932), - [aux_sym_declare_statement_token1] = ACTIONS(932), - [aux_sym_declare_statement_token2] = ACTIONS(932), - [sym_float] = ACTIONS(932), - [aux_sym_try_statement_token1] = ACTIONS(932), - [aux_sym_goto_statement_token1] = ACTIONS(932), - [aux_sym_continue_statement_token1] = ACTIONS(932), - [aux_sym_break_statement_token1] = ACTIONS(932), - [sym_integer] = ACTIONS(932), - [aux_sym_return_statement_token1] = ACTIONS(932), - [aux_sym_throw_expression_token1] = ACTIONS(932), - [aux_sym_while_statement_token1] = ACTIONS(932), - [aux_sym_while_statement_token2] = ACTIONS(932), - [aux_sym_do_statement_token1] = ACTIONS(932), - [aux_sym_for_statement_token1] = ACTIONS(932), - [aux_sym_for_statement_token2] = ACTIONS(932), - [aux_sym_foreach_statement_token1] = ACTIONS(932), - [aux_sym_foreach_statement_token2] = ACTIONS(932), - [aux_sym_if_statement_token1] = ACTIONS(932), - [aux_sym_if_statement_token2] = ACTIONS(932), - [aux_sym_else_if_clause_token1] = ACTIONS(926), - [aux_sym_else_clause_token1] = ACTIONS(928), - [aux_sym_match_expression_token1] = ACTIONS(932), - [aux_sym_match_default_expression_token1] = ACTIONS(932), - [aux_sym_switch_statement_token1] = ACTIONS(932), - [aux_sym_switch_block_token1] = ACTIONS(932), - [anon_sym_AT] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [aux_sym_clone_expression_token1] = ACTIONS(932), - [aux_sym_print_intrinsic_token1] = ACTIONS(932), - [aux_sym_object_creation_expression_token1] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(930), - [sym_shell_command_expression] = ACTIONS(930), - [aux_sym__list_destructing_token1] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_self] = ACTIONS(932), - [anon_sym_parent] = ACTIONS(932), - [anon_sym_POUND_LBRACK] = ACTIONS(930), - [aux_sym_encapsed_string_token1] = ACTIONS(930), - [anon_sym_DQUOTE] = ACTIONS(930), - [anon_sym_SQUOTE] = ACTIONS(930), - [aux_sym_string_token1] = ACTIONS(930), - [sym_boolean] = ACTIONS(932), - [sym_null] = ACTIONS(932), - [anon_sym_DOLLAR] = ACTIONS(930), - [aux_sym_yield_expression_token1] = ACTIONS(932), - [aux_sym_include_expression_token1] = ACTIONS(932), - [aux_sym_include_once_expression_token1] = ACTIONS(932), - [aux_sym_require_expression_token1] = ACTIONS(932), - [aux_sym_require_once_expression_token1] = ACTIONS(932), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(930), - }, - [457] = { - [sym_text_interpolation] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(946), - [sym_name] = ACTIONS(948), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(946), - [aux_sym_function_static_declaration_token1] = ACTIONS(948), - [aux_sym_global_declaration_token1] = ACTIONS(948), - [aux_sym_namespace_definition_token1] = ACTIONS(948), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(948), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(948), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(948), - [anon_sym_BSLASH] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [aux_sym_trait_declaration_token1] = ACTIONS(948), - [aux_sym_interface_declaration_token1] = ACTIONS(948), - [aux_sym_enum_declaration_token1] = ACTIONS(948), - [aux_sym_enum_case_token1] = ACTIONS(948), - [aux_sym_class_declaration_token1] = ACTIONS(948), - [aux_sym_final_modifier_token1] = ACTIONS(948), - [aux_sym_abstract_modifier_token1] = ACTIONS(948), - [aux_sym_visibility_modifier_token1] = ACTIONS(948), - [aux_sym_visibility_modifier_token2] = ACTIONS(948), - [aux_sym_visibility_modifier_token3] = ACTIONS(948), - [aux_sym_arrow_function_token1] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(946), - [aux_sym_cast_type_token1] = ACTIONS(948), - [aux_sym_echo_statement_token1] = ACTIONS(948), - [anon_sym_unset] = ACTIONS(948), - [aux_sym_declare_statement_token1] = ACTIONS(948), - [aux_sym_declare_statement_token2] = ACTIONS(948), - [sym_float] = ACTIONS(948), - [aux_sym_try_statement_token1] = ACTIONS(948), - [aux_sym_catch_clause_token1] = ACTIONS(948), - [aux_sym_finally_clause_token1] = ACTIONS(948), - [aux_sym_goto_statement_token1] = ACTIONS(948), - [aux_sym_continue_statement_token1] = ACTIONS(948), - [aux_sym_break_statement_token1] = ACTIONS(948), - [sym_integer] = ACTIONS(948), - [aux_sym_return_statement_token1] = ACTIONS(948), - [aux_sym_throw_expression_token1] = ACTIONS(948), - [aux_sym_while_statement_token1] = ACTIONS(948), - [aux_sym_while_statement_token2] = ACTIONS(948), - [aux_sym_do_statement_token1] = ACTIONS(948), - [aux_sym_for_statement_token1] = ACTIONS(948), - [aux_sym_for_statement_token2] = ACTIONS(948), - [aux_sym_foreach_statement_token1] = ACTIONS(948), - [aux_sym_foreach_statement_token2] = ACTIONS(948), - [aux_sym_if_statement_token1] = ACTIONS(948), - [aux_sym_if_statement_token2] = ACTIONS(948), - [aux_sym_else_if_clause_token1] = ACTIONS(948), - [aux_sym_else_clause_token1] = ACTIONS(948), - [aux_sym_match_expression_token1] = ACTIONS(948), - [aux_sym_match_default_expression_token1] = ACTIONS(948), - [aux_sym_switch_statement_token1] = ACTIONS(948), - [aux_sym_switch_block_token1] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(946), - [aux_sym_clone_expression_token1] = ACTIONS(948), - [aux_sym_print_intrinsic_token1] = ACTIONS(948), - [aux_sym_object_creation_expression_token1] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(946), - [sym_shell_command_expression] = ACTIONS(946), - [aux_sym__list_destructing_token1] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_self] = ACTIONS(948), - [anon_sym_parent] = ACTIONS(948), - [anon_sym_POUND_LBRACK] = ACTIONS(946), - [aux_sym_encapsed_string_token1] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [aux_sym_string_token1] = ACTIONS(946), - [sym_boolean] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(946), - [aux_sym_yield_expression_token1] = ACTIONS(948), - [aux_sym_include_expression_token1] = ACTIONS(948), - [aux_sym_include_once_expression_token1] = ACTIONS(948), - [aux_sym_require_expression_token1] = ACTIONS(948), - [aux_sym_require_once_expression_token1] = ACTIONS(948), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(946), - }, - [458] = { - [sym_text_interpolation] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(950), - [sym_name] = ACTIONS(952), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(950), - [aux_sym_function_static_declaration_token1] = ACTIONS(952), - [aux_sym_global_declaration_token1] = ACTIONS(952), - [aux_sym_namespace_definition_token1] = ACTIONS(952), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(952), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(952), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(952), - [anon_sym_BSLASH] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [aux_sym_trait_declaration_token1] = ACTIONS(952), - [aux_sym_interface_declaration_token1] = ACTIONS(952), - [aux_sym_enum_declaration_token1] = ACTIONS(952), - [aux_sym_enum_case_token1] = ACTIONS(952), - [aux_sym_class_declaration_token1] = ACTIONS(952), - [aux_sym_final_modifier_token1] = ACTIONS(952), - [aux_sym_abstract_modifier_token1] = ACTIONS(952), - [aux_sym_visibility_modifier_token1] = ACTIONS(952), - [aux_sym_visibility_modifier_token2] = ACTIONS(952), - [aux_sym_visibility_modifier_token3] = ACTIONS(952), - [aux_sym_arrow_function_token1] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(950), - [aux_sym_cast_type_token1] = ACTIONS(952), - [aux_sym_echo_statement_token1] = ACTIONS(952), - [anon_sym_unset] = ACTIONS(952), - [aux_sym_declare_statement_token1] = ACTIONS(952), - [aux_sym_declare_statement_token2] = ACTIONS(952), - [sym_float] = ACTIONS(952), - [aux_sym_try_statement_token1] = ACTIONS(952), - [aux_sym_catch_clause_token1] = ACTIONS(952), - [aux_sym_finally_clause_token1] = ACTIONS(952), - [aux_sym_goto_statement_token1] = ACTIONS(952), - [aux_sym_continue_statement_token1] = ACTIONS(952), - [aux_sym_break_statement_token1] = ACTIONS(952), - [sym_integer] = ACTIONS(952), - [aux_sym_return_statement_token1] = ACTIONS(952), - [aux_sym_throw_expression_token1] = ACTIONS(952), - [aux_sym_while_statement_token1] = ACTIONS(952), - [aux_sym_while_statement_token2] = ACTIONS(952), - [aux_sym_do_statement_token1] = ACTIONS(952), - [aux_sym_for_statement_token1] = ACTIONS(952), - [aux_sym_for_statement_token2] = ACTIONS(952), - [aux_sym_foreach_statement_token1] = ACTIONS(952), - [aux_sym_foreach_statement_token2] = ACTIONS(952), - [aux_sym_if_statement_token1] = ACTIONS(952), - [aux_sym_if_statement_token2] = ACTIONS(952), - [aux_sym_else_if_clause_token1] = ACTIONS(952), - [aux_sym_else_clause_token1] = ACTIONS(952), - [aux_sym_match_expression_token1] = ACTIONS(952), - [aux_sym_match_default_expression_token1] = ACTIONS(952), - [aux_sym_switch_statement_token1] = ACTIONS(952), - [aux_sym_switch_block_token1] = ACTIONS(952), - [anon_sym_AT] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [aux_sym_clone_expression_token1] = ACTIONS(952), - [aux_sym_print_intrinsic_token1] = ACTIONS(952), - [aux_sym_object_creation_expression_token1] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [sym_shell_command_expression] = ACTIONS(950), - [aux_sym__list_destructing_token1] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_self] = ACTIONS(952), - [anon_sym_parent] = ACTIONS(952), - [anon_sym_POUND_LBRACK] = ACTIONS(950), - [aux_sym_encapsed_string_token1] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [aux_sym_string_token1] = ACTIONS(950), - [sym_boolean] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(950), - [aux_sym_yield_expression_token1] = ACTIONS(952), - [aux_sym_include_expression_token1] = ACTIONS(952), - [aux_sym_include_once_expression_token1] = ACTIONS(952), - [aux_sym_require_expression_token1] = ACTIONS(952), - [aux_sym_require_once_expression_token1] = ACTIONS(952), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(950), - }, - [459] = { - [sym_text_interpolation] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(954), - [sym_name] = ACTIONS(956), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(954), - [aux_sym_function_static_declaration_token1] = ACTIONS(956), - [aux_sym_global_declaration_token1] = ACTIONS(956), - [aux_sym_namespace_definition_token1] = ACTIONS(956), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(956), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(956), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(956), - [anon_sym_BSLASH] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [aux_sym_trait_declaration_token1] = ACTIONS(956), - [aux_sym_interface_declaration_token1] = ACTIONS(956), - [aux_sym_enum_declaration_token1] = ACTIONS(956), - [aux_sym_enum_case_token1] = ACTIONS(956), - [aux_sym_class_declaration_token1] = ACTIONS(956), - [aux_sym_final_modifier_token1] = ACTIONS(956), - [aux_sym_abstract_modifier_token1] = ACTIONS(956), - [aux_sym_visibility_modifier_token1] = ACTIONS(956), - [aux_sym_visibility_modifier_token2] = ACTIONS(956), - [aux_sym_visibility_modifier_token3] = ACTIONS(956), - [aux_sym_arrow_function_token1] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(954), - [aux_sym_cast_type_token1] = ACTIONS(956), - [aux_sym_echo_statement_token1] = ACTIONS(956), - [anon_sym_unset] = ACTIONS(956), - [aux_sym_declare_statement_token1] = ACTIONS(956), - [aux_sym_declare_statement_token2] = ACTIONS(956), - [sym_float] = ACTIONS(956), - [aux_sym_try_statement_token1] = ACTIONS(956), - [aux_sym_catch_clause_token1] = ACTIONS(956), - [aux_sym_finally_clause_token1] = ACTIONS(956), - [aux_sym_goto_statement_token1] = ACTIONS(956), - [aux_sym_continue_statement_token1] = ACTIONS(956), - [aux_sym_break_statement_token1] = ACTIONS(956), - [sym_integer] = ACTIONS(956), - [aux_sym_return_statement_token1] = ACTIONS(956), - [aux_sym_throw_expression_token1] = ACTIONS(956), - [aux_sym_while_statement_token1] = ACTIONS(956), - [aux_sym_while_statement_token2] = ACTIONS(956), - [aux_sym_do_statement_token1] = ACTIONS(956), - [aux_sym_for_statement_token1] = ACTIONS(956), - [aux_sym_for_statement_token2] = ACTIONS(956), - [aux_sym_foreach_statement_token1] = ACTIONS(956), - [aux_sym_foreach_statement_token2] = ACTIONS(956), - [aux_sym_if_statement_token1] = ACTIONS(956), - [aux_sym_if_statement_token2] = ACTIONS(956), - [aux_sym_else_if_clause_token1] = ACTIONS(956), - [aux_sym_else_clause_token1] = ACTIONS(956), - [aux_sym_match_expression_token1] = ACTIONS(956), - [aux_sym_match_default_expression_token1] = ACTIONS(956), - [aux_sym_switch_statement_token1] = ACTIONS(956), - [aux_sym_switch_block_token1] = ACTIONS(956), - [anon_sym_AT] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [aux_sym_clone_expression_token1] = ACTIONS(956), - [aux_sym_print_intrinsic_token1] = ACTIONS(956), - [aux_sym_object_creation_expression_token1] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(954), - [sym_shell_command_expression] = ACTIONS(954), - [aux_sym__list_destructing_token1] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_self] = ACTIONS(956), - [anon_sym_parent] = ACTIONS(956), - [anon_sym_POUND_LBRACK] = ACTIONS(954), - [aux_sym_encapsed_string_token1] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [anon_sym_SQUOTE] = ACTIONS(954), - [aux_sym_string_token1] = ACTIONS(954), - [sym_boolean] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(954), - [aux_sym_yield_expression_token1] = ACTIONS(956), - [aux_sym_include_expression_token1] = ACTIONS(956), - [aux_sym_include_once_expression_token1] = ACTIONS(956), - [aux_sym_require_expression_token1] = ACTIONS(956), - [aux_sym_require_once_expression_token1] = ACTIONS(956), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(954), - }, - [460] = { - [sym_text_interpolation] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(958), - [sym_name] = ACTIONS(960), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(958), - [aux_sym_function_static_declaration_token1] = ACTIONS(960), - [aux_sym_global_declaration_token1] = ACTIONS(960), - [aux_sym_namespace_definition_token1] = ACTIONS(960), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(960), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(960), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [aux_sym_trait_declaration_token1] = ACTIONS(960), - [aux_sym_interface_declaration_token1] = ACTIONS(960), - [aux_sym_enum_declaration_token1] = ACTIONS(960), - [aux_sym_enum_case_token1] = ACTIONS(960), - [aux_sym_class_declaration_token1] = ACTIONS(960), - [aux_sym_final_modifier_token1] = ACTIONS(960), - [aux_sym_abstract_modifier_token1] = ACTIONS(960), - [aux_sym_visibility_modifier_token1] = ACTIONS(960), - [aux_sym_visibility_modifier_token2] = ACTIONS(960), - [aux_sym_visibility_modifier_token3] = ACTIONS(960), - [aux_sym_arrow_function_token1] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(958), - [aux_sym_cast_type_token1] = ACTIONS(960), - [aux_sym_echo_statement_token1] = ACTIONS(960), - [anon_sym_unset] = ACTIONS(960), - [aux_sym_declare_statement_token1] = ACTIONS(960), - [aux_sym_declare_statement_token2] = ACTIONS(960), - [sym_float] = ACTIONS(960), - [aux_sym_try_statement_token1] = ACTIONS(960), - [aux_sym_catch_clause_token1] = ACTIONS(960), - [aux_sym_finally_clause_token1] = ACTIONS(960), - [aux_sym_goto_statement_token1] = ACTIONS(960), - [aux_sym_continue_statement_token1] = ACTIONS(960), - [aux_sym_break_statement_token1] = ACTIONS(960), - [sym_integer] = ACTIONS(960), - [aux_sym_return_statement_token1] = ACTIONS(960), - [aux_sym_throw_expression_token1] = ACTIONS(960), - [aux_sym_while_statement_token1] = ACTIONS(960), - [aux_sym_while_statement_token2] = ACTIONS(960), - [aux_sym_do_statement_token1] = ACTIONS(960), - [aux_sym_for_statement_token1] = ACTIONS(960), - [aux_sym_for_statement_token2] = ACTIONS(960), - [aux_sym_foreach_statement_token1] = ACTIONS(960), - [aux_sym_foreach_statement_token2] = ACTIONS(960), - [aux_sym_if_statement_token1] = ACTIONS(960), - [aux_sym_if_statement_token2] = ACTIONS(960), - [aux_sym_else_if_clause_token1] = ACTIONS(960), - [aux_sym_else_clause_token1] = ACTIONS(960), - [aux_sym_match_expression_token1] = ACTIONS(960), - [aux_sym_match_default_expression_token1] = ACTIONS(960), - [aux_sym_switch_statement_token1] = ACTIONS(960), - [aux_sym_switch_block_token1] = ACTIONS(960), - [anon_sym_AT] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [aux_sym_clone_expression_token1] = ACTIONS(960), - [aux_sym_print_intrinsic_token1] = ACTIONS(960), - [aux_sym_object_creation_expression_token1] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(958), - [sym_shell_command_expression] = ACTIONS(958), - [aux_sym__list_destructing_token1] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(958), - [anon_sym_self] = ACTIONS(960), - [anon_sym_parent] = ACTIONS(960), - [anon_sym_POUND_LBRACK] = ACTIONS(958), - [aux_sym_encapsed_string_token1] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(958), - [aux_sym_string_token1] = ACTIONS(958), - [sym_boolean] = ACTIONS(960), - [sym_null] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(958), - [aux_sym_yield_expression_token1] = ACTIONS(960), - [aux_sym_include_expression_token1] = ACTIONS(960), - [aux_sym_include_once_expression_token1] = ACTIONS(960), - [aux_sym_require_expression_token1] = ACTIONS(960), - [aux_sym_require_once_expression_token1] = ACTIONS(960), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(958), - }, - [461] = { - [sym_text_interpolation] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(962), - [sym_name] = ACTIONS(964), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(962), - [aux_sym_function_static_declaration_token1] = ACTIONS(964), - [aux_sym_global_declaration_token1] = ACTIONS(964), - [aux_sym_namespace_definition_token1] = ACTIONS(964), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(964), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(964), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(964), - [anon_sym_BSLASH] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [aux_sym_trait_declaration_token1] = ACTIONS(964), - [aux_sym_interface_declaration_token1] = ACTIONS(964), - [aux_sym_enum_declaration_token1] = ACTIONS(964), - [aux_sym_enum_case_token1] = ACTIONS(964), - [aux_sym_class_declaration_token1] = ACTIONS(964), - [aux_sym_final_modifier_token1] = ACTIONS(964), - [aux_sym_abstract_modifier_token1] = ACTIONS(964), - [aux_sym_visibility_modifier_token1] = ACTIONS(964), - [aux_sym_visibility_modifier_token2] = ACTIONS(964), - [aux_sym_visibility_modifier_token3] = ACTIONS(964), - [aux_sym_arrow_function_token1] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(962), - [aux_sym_cast_type_token1] = ACTIONS(964), - [aux_sym_echo_statement_token1] = ACTIONS(964), - [anon_sym_unset] = ACTIONS(964), - [aux_sym_declare_statement_token1] = ACTIONS(964), - [aux_sym_declare_statement_token2] = ACTIONS(964), - [sym_float] = ACTIONS(964), - [aux_sym_try_statement_token1] = ACTIONS(964), - [aux_sym_catch_clause_token1] = ACTIONS(964), - [aux_sym_finally_clause_token1] = ACTIONS(964), - [aux_sym_goto_statement_token1] = ACTIONS(964), - [aux_sym_continue_statement_token1] = ACTIONS(964), - [aux_sym_break_statement_token1] = ACTIONS(964), - [sym_integer] = ACTIONS(964), - [aux_sym_return_statement_token1] = ACTIONS(964), - [aux_sym_throw_expression_token1] = ACTIONS(964), - [aux_sym_while_statement_token1] = ACTIONS(964), - [aux_sym_while_statement_token2] = ACTIONS(964), - [aux_sym_do_statement_token1] = ACTIONS(964), - [aux_sym_for_statement_token1] = ACTIONS(964), - [aux_sym_for_statement_token2] = ACTIONS(964), - [aux_sym_foreach_statement_token1] = ACTIONS(964), - [aux_sym_foreach_statement_token2] = ACTIONS(964), - [aux_sym_if_statement_token1] = ACTIONS(964), - [aux_sym_if_statement_token2] = ACTIONS(964), - [aux_sym_else_if_clause_token1] = ACTIONS(964), - [aux_sym_else_clause_token1] = ACTIONS(964), - [aux_sym_match_expression_token1] = ACTIONS(964), - [aux_sym_match_default_expression_token1] = ACTIONS(964), - [aux_sym_switch_statement_token1] = ACTIONS(964), - [aux_sym_switch_block_token1] = ACTIONS(964), - [anon_sym_AT] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [aux_sym_clone_expression_token1] = ACTIONS(964), - [aux_sym_print_intrinsic_token1] = ACTIONS(964), - [aux_sym_object_creation_expression_token1] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(962), - [sym_shell_command_expression] = ACTIONS(962), - [aux_sym__list_destructing_token1] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_self] = ACTIONS(964), - [anon_sym_parent] = ACTIONS(964), - [anon_sym_POUND_LBRACK] = ACTIONS(962), - [aux_sym_encapsed_string_token1] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(962), - [aux_sym_string_token1] = ACTIONS(962), - [sym_boolean] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [aux_sym_yield_expression_token1] = ACTIONS(964), - [aux_sym_include_expression_token1] = ACTIONS(964), - [aux_sym_include_once_expression_token1] = ACTIONS(964), - [aux_sym_require_expression_token1] = ACTIONS(964), - [aux_sym_require_once_expression_token1] = ACTIONS(964), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(962), - }, - [462] = { - [sym_text_interpolation] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(966), - [sym_name] = ACTIONS(968), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(966), - [aux_sym_function_static_declaration_token1] = ACTIONS(968), - [aux_sym_global_declaration_token1] = ACTIONS(968), - [aux_sym_namespace_definition_token1] = ACTIONS(968), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(968), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(968), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [aux_sym_trait_declaration_token1] = ACTIONS(968), - [aux_sym_interface_declaration_token1] = ACTIONS(968), - [aux_sym_enum_declaration_token1] = ACTIONS(968), - [aux_sym_enum_case_token1] = ACTIONS(968), - [aux_sym_class_declaration_token1] = ACTIONS(968), - [aux_sym_final_modifier_token1] = ACTIONS(968), - [aux_sym_abstract_modifier_token1] = ACTIONS(968), - [aux_sym_visibility_modifier_token1] = ACTIONS(968), - [aux_sym_visibility_modifier_token2] = ACTIONS(968), - [aux_sym_visibility_modifier_token3] = ACTIONS(968), - [aux_sym_arrow_function_token1] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(966), - [aux_sym_cast_type_token1] = ACTIONS(968), - [aux_sym_echo_statement_token1] = ACTIONS(968), - [anon_sym_unset] = ACTIONS(968), - [aux_sym_declare_statement_token1] = ACTIONS(968), - [aux_sym_declare_statement_token2] = ACTIONS(968), - [sym_float] = ACTIONS(968), - [aux_sym_try_statement_token1] = ACTIONS(968), - [aux_sym_catch_clause_token1] = ACTIONS(968), - [aux_sym_finally_clause_token1] = ACTIONS(968), - [aux_sym_goto_statement_token1] = ACTIONS(968), - [aux_sym_continue_statement_token1] = ACTIONS(968), - [aux_sym_break_statement_token1] = ACTIONS(968), - [sym_integer] = ACTIONS(968), - [aux_sym_return_statement_token1] = ACTIONS(968), - [aux_sym_throw_expression_token1] = ACTIONS(968), - [aux_sym_while_statement_token1] = ACTIONS(968), - [aux_sym_while_statement_token2] = ACTIONS(968), - [aux_sym_do_statement_token1] = ACTIONS(968), - [aux_sym_for_statement_token1] = ACTIONS(968), - [aux_sym_for_statement_token2] = ACTIONS(968), - [aux_sym_foreach_statement_token1] = ACTIONS(968), - [aux_sym_foreach_statement_token2] = ACTIONS(968), - [aux_sym_if_statement_token1] = ACTIONS(968), - [aux_sym_if_statement_token2] = ACTIONS(968), - [aux_sym_else_if_clause_token1] = ACTIONS(968), - [aux_sym_else_clause_token1] = ACTIONS(968), - [aux_sym_match_expression_token1] = ACTIONS(968), - [aux_sym_match_default_expression_token1] = ACTIONS(968), - [aux_sym_switch_statement_token1] = ACTIONS(968), - [aux_sym_switch_block_token1] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [aux_sym_clone_expression_token1] = ACTIONS(968), - [aux_sym_print_intrinsic_token1] = ACTIONS(968), - [aux_sym_object_creation_expression_token1] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(966), - [sym_shell_command_expression] = ACTIONS(966), - [aux_sym__list_destructing_token1] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_self] = ACTIONS(968), - [anon_sym_parent] = ACTIONS(968), - [anon_sym_POUND_LBRACK] = ACTIONS(966), - [aux_sym_encapsed_string_token1] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [aux_sym_string_token1] = ACTIONS(966), - [sym_boolean] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [aux_sym_yield_expression_token1] = ACTIONS(968), - [aux_sym_include_expression_token1] = ACTIONS(968), - [aux_sym_include_once_expression_token1] = ACTIONS(968), - [aux_sym_require_expression_token1] = ACTIONS(968), - [aux_sym_require_once_expression_token1] = ACTIONS(968), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(966), - }, - [463] = { - [sym_text_interpolation] = STATE(463), - [sym_else_if_clause] = STATE(554), - [aux_sym_if_statement_repeat1] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(970), - [sym_name] = ACTIONS(972), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(970), - [aux_sym_function_static_declaration_token1] = ACTIONS(972), - [aux_sym_global_declaration_token1] = ACTIONS(972), - [aux_sym_namespace_definition_token1] = ACTIONS(972), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(972), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(972), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(972), - [anon_sym_BSLASH] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [aux_sym_trait_declaration_token1] = ACTIONS(972), - [aux_sym_interface_declaration_token1] = ACTIONS(972), - [aux_sym_enum_declaration_token1] = ACTIONS(972), - [aux_sym_enum_case_token1] = ACTIONS(972), - [aux_sym_class_declaration_token1] = ACTIONS(972), - [aux_sym_final_modifier_token1] = ACTIONS(972), - [aux_sym_abstract_modifier_token1] = ACTIONS(972), - [aux_sym_visibility_modifier_token1] = ACTIONS(972), - [aux_sym_visibility_modifier_token2] = ACTIONS(972), - [aux_sym_visibility_modifier_token3] = ACTIONS(972), - [aux_sym_arrow_function_token1] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(970), - [aux_sym_cast_type_token1] = ACTIONS(972), - [aux_sym_echo_statement_token1] = ACTIONS(972), - [anon_sym_unset] = ACTIONS(972), - [aux_sym_declare_statement_token1] = ACTIONS(972), - [aux_sym_declare_statement_token2] = ACTIONS(972), - [sym_float] = ACTIONS(972), - [aux_sym_try_statement_token1] = ACTIONS(972), - [aux_sym_goto_statement_token1] = ACTIONS(972), - [aux_sym_continue_statement_token1] = ACTIONS(972), - [aux_sym_break_statement_token1] = ACTIONS(972), - [sym_integer] = ACTIONS(972), - [aux_sym_return_statement_token1] = ACTIONS(972), - [aux_sym_throw_expression_token1] = ACTIONS(972), - [aux_sym_while_statement_token1] = ACTIONS(972), - [aux_sym_while_statement_token2] = ACTIONS(972), - [aux_sym_do_statement_token1] = ACTIONS(972), - [aux_sym_for_statement_token1] = ACTIONS(972), - [aux_sym_for_statement_token2] = ACTIONS(972), - [aux_sym_foreach_statement_token1] = ACTIONS(972), - [aux_sym_foreach_statement_token2] = ACTIONS(972), - [aux_sym_if_statement_token1] = ACTIONS(972), - [aux_sym_if_statement_token2] = ACTIONS(972), - [aux_sym_else_if_clause_token1] = ACTIONS(974), - [aux_sym_else_clause_token1] = ACTIONS(972), - [aux_sym_match_expression_token1] = ACTIONS(972), - [aux_sym_match_default_expression_token1] = ACTIONS(972), - [aux_sym_switch_statement_token1] = ACTIONS(972), - [aux_sym_switch_block_token1] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [aux_sym_clone_expression_token1] = ACTIONS(972), - [aux_sym_print_intrinsic_token1] = ACTIONS(972), - [aux_sym_object_creation_expression_token1] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(970), - [sym_shell_command_expression] = ACTIONS(970), - [aux_sym__list_destructing_token1] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_self] = ACTIONS(972), - [anon_sym_parent] = ACTIONS(972), - [anon_sym_POUND_LBRACK] = ACTIONS(970), - [aux_sym_encapsed_string_token1] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [aux_sym_string_token1] = ACTIONS(970), - [sym_boolean] = ACTIONS(972), - [sym_null] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(970), - [aux_sym_yield_expression_token1] = ACTIONS(972), - [aux_sym_include_expression_token1] = ACTIONS(972), - [aux_sym_include_once_expression_token1] = ACTIONS(972), - [aux_sym_require_expression_token1] = ACTIONS(972), - [aux_sym_require_once_expression_token1] = ACTIONS(972), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(970), - }, - [464] = { - [sym_text_interpolation] = STATE(464), - [ts_builtin_sym_end] = ACTIONS(977), - [sym_name] = ACTIONS(979), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(981), - [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_enum_declaration_token1] = ACTIONS(979), - [aux_sym_enum_case_token1] = ACTIONS(979), - [aux_sym_class_declaration_token1] = ACTIONS(979), - [aux_sym_final_modifier_token1] = ACTIONS(979), - [aux_sym_abstract_modifier_token1] = ACTIONS(979), - [aux_sym_visibility_modifier_token1] = ACTIONS(979), - [aux_sym_visibility_modifier_token2] = ACTIONS(979), - [aux_sym_visibility_modifier_token3] = ACTIONS(979), - [aux_sym_arrow_function_token1] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(977), - [aux_sym_cast_type_token1] = ACTIONS(979), - [aux_sym_echo_statement_token1] = ACTIONS(979), - [anon_sym_unset] = ACTIONS(979), - [aux_sym_declare_statement_token1] = ACTIONS(979), - [aux_sym_declare_statement_token2] = 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_expression_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_match_expression_token1] = ACTIONS(979), - [aux_sym_match_default_expression_token1] = ACTIONS(979), - [aux_sym_switch_statement_token1] = ACTIONS(979), - [aux_sym_switch_block_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), - [aux_sym_clone_expression_token1] = ACTIONS(979), - [aux_sym_print_intrinsic_token1] = ACTIONS(979), - [aux_sym_object_creation_expression_token1] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(977), - [anon_sym_DASH_DASH] = ACTIONS(977), - [sym_shell_command_expression] = ACTIONS(977), - [aux_sym__list_destructing_token1] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_self] = ACTIONS(979), - [anon_sym_parent] = ACTIONS(979), - [anon_sym_POUND_LBRACK] = ACTIONS(977), - [aux_sym_encapsed_string_token1] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(977), - [aux_sym_string_token1] = ACTIONS(977), - [sym_boolean] = ACTIONS(979), - [sym_null] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(977), - [aux_sym_yield_expression_token1] = 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__automatic_semicolon] = ACTIONS(981), - [sym_heredoc] = ACTIONS(977), - }, - [465] = { - [sym_text_interpolation] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(983), - [sym_name] = ACTIONS(985), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(987), - [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_visibility_modifier_token1] = ACTIONS(985), - [aux_sym_visibility_modifier_token2] = ACTIONS(985), - [aux_sym_visibility_modifier_token3] = ACTIONS(985), - [aux_sym_arrow_function_token1] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(983), - [aux_sym_cast_type_token1] = ACTIONS(985), - [aux_sym_echo_statement_token1] = ACTIONS(985), - [anon_sym_unset] = ACTIONS(985), - [aux_sym_declare_statement_token1] = ACTIONS(985), - [aux_sym_declare_statement_token2] = ACTIONS(985), - [sym_float] = ACTIONS(985), - [aux_sym_try_statement_token1] = ACTIONS(985), - [aux_sym_goto_statement_token1] = ACTIONS(985), - [aux_sym_continue_statement_token1] = ACTIONS(985), - [aux_sym_break_statement_token1] = ACTIONS(985), - [sym_integer] = ACTIONS(985), - [aux_sym_return_statement_token1] = ACTIONS(985), - [aux_sym_throw_expression_token1] = ACTIONS(985), - [aux_sym_while_statement_token1] = ACTIONS(985), - [aux_sym_while_statement_token2] = ACTIONS(985), - [aux_sym_do_statement_token1] = ACTIONS(985), - [aux_sym_for_statement_token1] = ACTIONS(985), - [aux_sym_for_statement_token2] = ACTIONS(985), - [aux_sym_foreach_statement_token1] = ACTIONS(985), - [aux_sym_foreach_statement_token2] = ACTIONS(985), - [aux_sym_if_statement_token1] = ACTIONS(985), - [aux_sym_if_statement_token2] = ACTIONS(985), - [aux_sym_else_if_clause_token1] = ACTIONS(985), - [aux_sym_else_clause_token1] = ACTIONS(985), - [aux_sym_match_expression_token1] = ACTIONS(985), - [aux_sym_match_default_expression_token1] = ACTIONS(985), - [aux_sym_switch_statement_token1] = ACTIONS(985), - [aux_sym_switch_block_token1] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(983), - [aux_sym_clone_expression_token1] = ACTIONS(985), - [aux_sym_print_intrinsic_token1] = ACTIONS(985), - [aux_sym_object_creation_expression_token1] = ACTIONS(985), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [sym_shell_command_expression] = ACTIONS(983), - [aux_sym__list_destructing_token1] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_self] = ACTIONS(985), - [anon_sym_parent] = ACTIONS(985), - [anon_sym_POUND_LBRACK] = ACTIONS(983), - [aux_sym_encapsed_string_token1] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(983), - [aux_sym_string_token1] = ACTIONS(983), - [sym_boolean] = ACTIONS(985), - [sym_null] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(983), - [aux_sym_yield_expression_token1] = ACTIONS(985), - [aux_sym_include_expression_token1] = ACTIONS(985), - [aux_sym_include_once_expression_token1] = ACTIONS(985), - [aux_sym_require_expression_token1] = ACTIONS(985), - [aux_sym_require_once_expression_token1] = ACTIONS(985), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(987), - [sym_heredoc] = ACTIONS(983), - }, - [466] = { - [sym_text_interpolation] = STATE(466), - [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_enum_declaration_token1] = ACTIONS(991), - [aux_sym_enum_case_token1] = ACTIONS(991), - [aux_sym_class_declaration_token1] = ACTIONS(991), - [aux_sym_final_modifier_token1] = ACTIONS(991), - [aux_sym_abstract_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token2] = ACTIONS(991), - [aux_sym_visibility_modifier_token3] = ACTIONS(991), - [aux_sym_arrow_function_token1] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [aux_sym_cast_type_token1] = ACTIONS(991), - [aux_sym_echo_statement_token1] = ACTIONS(991), - [anon_sym_unset] = ACTIONS(991), - [aux_sym_declare_statement_token1] = ACTIONS(991), - [aux_sym_declare_statement_token2] = ACTIONS(991), - [sym_float] = ACTIONS(991), - [aux_sym_try_statement_token1] = ACTIONS(991), - [aux_sym_goto_statement_token1] = ACTIONS(991), - [aux_sym_continue_statement_token1] = ACTIONS(991), - [aux_sym_break_statement_token1] = ACTIONS(991), - [sym_integer] = ACTIONS(991), - [aux_sym_return_statement_token1] = ACTIONS(991), - [aux_sym_throw_expression_token1] = ACTIONS(991), - [aux_sym_while_statement_token1] = ACTIONS(991), - [aux_sym_while_statement_token2] = ACTIONS(991), - [aux_sym_do_statement_token1] = ACTIONS(991), - [aux_sym_for_statement_token1] = ACTIONS(991), - [aux_sym_for_statement_token2] = ACTIONS(991), - [aux_sym_foreach_statement_token1] = ACTIONS(991), - [aux_sym_foreach_statement_token2] = ACTIONS(991), - [aux_sym_if_statement_token1] = ACTIONS(991), - [aux_sym_if_statement_token2] = ACTIONS(991), - [aux_sym_else_if_clause_token1] = ACTIONS(991), - [aux_sym_else_clause_token1] = ACTIONS(991), - [aux_sym_match_expression_token1] = ACTIONS(991), - [aux_sym_match_default_expression_token1] = ACTIONS(991), - [aux_sym_switch_statement_token1] = ACTIONS(991), - [aux_sym_switch_block_token1] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [aux_sym_clone_expression_token1] = ACTIONS(991), - [aux_sym_print_intrinsic_token1] = ACTIONS(991), - [aux_sym_object_creation_expression_token1] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_DASH_DASH] = ACTIONS(989), - [sym_shell_command_expression] = ACTIONS(989), - [aux_sym__list_destructing_token1] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_self] = ACTIONS(991), - [anon_sym_parent] = ACTIONS(991), - [anon_sym_POUND_LBRACK] = ACTIONS(989), - [aux_sym_encapsed_string_token1] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_SQUOTE] = ACTIONS(989), - [aux_sym_string_token1] = ACTIONS(989), - [sym_boolean] = ACTIONS(991), - [sym_null] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(989), - [aux_sym_yield_expression_token1] = ACTIONS(991), - [aux_sym_include_expression_token1] = ACTIONS(991), - [aux_sym_include_once_expression_token1] = ACTIONS(991), - [aux_sym_require_expression_token1] = ACTIONS(991), - [aux_sym_require_once_expression_token1] = ACTIONS(991), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(989), - [sym_heredoc] = ACTIONS(989), - }, - [467] = { - [sym_text_interpolation] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(993), - [sym_name] = ACTIONS(995), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(997), - [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_enum_declaration_token1] = ACTIONS(995), - [aux_sym_enum_case_token1] = ACTIONS(995), - [aux_sym_class_declaration_token1] = ACTIONS(995), - [aux_sym_final_modifier_token1] = ACTIONS(995), - [aux_sym_abstract_modifier_token1] = ACTIONS(995), - [aux_sym_visibility_modifier_token1] = ACTIONS(995), - [aux_sym_visibility_modifier_token2] = ACTIONS(995), - [aux_sym_visibility_modifier_token3] = ACTIONS(995), - [aux_sym_arrow_function_token1] = ACTIONS(995), - [anon_sym_LPAREN] = ACTIONS(993), - [aux_sym_cast_type_token1] = ACTIONS(995), - [aux_sym_echo_statement_token1] = ACTIONS(995), - [anon_sym_unset] = ACTIONS(995), - [aux_sym_declare_statement_token1] = ACTIONS(995), - [aux_sym_declare_statement_token2] = 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_expression_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_match_expression_token1] = ACTIONS(995), - [aux_sym_match_default_expression_token1] = ACTIONS(995), - [aux_sym_switch_statement_token1] = ACTIONS(995), - [aux_sym_switch_block_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), - [aux_sym_clone_expression_token1] = ACTIONS(995), - [aux_sym_print_intrinsic_token1] = ACTIONS(995), - [aux_sym_object_creation_expression_token1] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(993), - [anon_sym_DASH_DASH] = ACTIONS(993), - [sym_shell_command_expression] = ACTIONS(993), - [aux_sym__list_destructing_token1] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_self] = ACTIONS(995), - [anon_sym_parent] = ACTIONS(995), - [anon_sym_POUND_LBRACK] = ACTIONS(993), - [aux_sym_encapsed_string_token1] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(993), - [anon_sym_SQUOTE] = ACTIONS(993), - [aux_sym_string_token1] = ACTIONS(993), - [sym_boolean] = ACTIONS(995), - [sym_null] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(993), - [aux_sym_yield_expression_token1] = 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__automatic_semicolon] = ACTIONS(997), - [sym_heredoc] = ACTIONS(993), - }, - [468] = { - [sym_text_interpolation] = STATE(468), - [ts_builtin_sym_end] = ACTIONS(999), - [sym_name] = ACTIONS(1001), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1003), - [aux_sym_function_static_declaration_token1] = ACTIONS(1001), - [aux_sym_global_declaration_token1] = ACTIONS(1001), - [aux_sym_namespace_definition_token1] = ACTIONS(1001), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1001), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1001), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1001), - [anon_sym_BSLASH] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [aux_sym_trait_declaration_token1] = ACTIONS(1001), - [aux_sym_interface_declaration_token1] = ACTIONS(1001), - [aux_sym_enum_declaration_token1] = ACTIONS(1001), - [aux_sym_enum_case_token1] = ACTIONS(1001), - [aux_sym_class_declaration_token1] = ACTIONS(1001), - [aux_sym_final_modifier_token1] = ACTIONS(1001), - [aux_sym_abstract_modifier_token1] = ACTIONS(1001), - [aux_sym_visibility_modifier_token1] = ACTIONS(1001), - [aux_sym_visibility_modifier_token2] = ACTIONS(1001), - [aux_sym_visibility_modifier_token3] = ACTIONS(1001), - [aux_sym_arrow_function_token1] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(999), - [aux_sym_cast_type_token1] = ACTIONS(1001), - [aux_sym_echo_statement_token1] = ACTIONS(1001), - [anon_sym_unset] = ACTIONS(1001), - [aux_sym_declare_statement_token1] = ACTIONS(1001), - [aux_sym_declare_statement_token2] = ACTIONS(1001), - [sym_float] = ACTIONS(1001), - [aux_sym_try_statement_token1] = ACTIONS(1001), - [aux_sym_goto_statement_token1] = ACTIONS(1001), - [aux_sym_continue_statement_token1] = ACTIONS(1001), - [aux_sym_break_statement_token1] = ACTIONS(1001), - [sym_integer] = ACTIONS(1001), - [aux_sym_return_statement_token1] = ACTIONS(1001), - [aux_sym_throw_expression_token1] = ACTIONS(1001), - [aux_sym_while_statement_token1] = ACTIONS(1001), - [aux_sym_while_statement_token2] = ACTIONS(1001), - [aux_sym_do_statement_token1] = ACTIONS(1001), - [aux_sym_for_statement_token1] = ACTIONS(1001), - [aux_sym_for_statement_token2] = ACTIONS(1001), - [aux_sym_foreach_statement_token1] = ACTIONS(1001), - [aux_sym_foreach_statement_token2] = ACTIONS(1001), - [aux_sym_if_statement_token1] = ACTIONS(1001), - [aux_sym_if_statement_token2] = ACTIONS(1001), - [aux_sym_else_if_clause_token1] = ACTIONS(1001), - [aux_sym_else_clause_token1] = ACTIONS(1001), - [aux_sym_match_expression_token1] = ACTIONS(1001), - [aux_sym_match_default_expression_token1] = ACTIONS(1001), - [aux_sym_switch_statement_token1] = ACTIONS(1001), - [aux_sym_switch_block_token1] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_BANG] = ACTIONS(999), - [aux_sym_clone_expression_token1] = ACTIONS(1001), - [aux_sym_print_intrinsic_token1] = ACTIONS(1001), - [aux_sym_object_creation_expression_token1] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [sym_shell_command_expression] = ACTIONS(999), - [aux_sym__list_destructing_token1] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_self] = ACTIONS(1001), - [anon_sym_parent] = ACTIONS(1001), - [anon_sym_POUND_LBRACK] = ACTIONS(999), - [aux_sym_encapsed_string_token1] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(999), - [aux_sym_string_token1] = ACTIONS(999), - [sym_boolean] = ACTIONS(1001), - [sym_null] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(999), - [aux_sym_yield_expression_token1] = ACTIONS(1001), - [aux_sym_include_expression_token1] = ACTIONS(1001), - [aux_sym_include_once_expression_token1] = ACTIONS(1001), - [aux_sym_require_expression_token1] = ACTIONS(1001), - [aux_sym_require_once_expression_token1] = ACTIONS(1001), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1003), - [sym_heredoc] = ACTIONS(999), - }, - [469] = { - [sym_text_interpolation] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(1005), - [sym_name] = ACTIONS(1007), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1009), - [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_enum_declaration_token1] = ACTIONS(1007), - [aux_sym_enum_case_token1] = ACTIONS(1007), - [aux_sym_class_declaration_token1] = ACTIONS(1007), - [aux_sym_final_modifier_token1] = ACTIONS(1007), - [aux_sym_abstract_modifier_token1] = ACTIONS(1007), - [aux_sym_visibility_modifier_token1] = ACTIONS(1007), - [aux_sym_visibility_modifier_token2] = ACTIONS(1007), - [aux_sym_visibility_modifier_token3] = ACTIONS(1007), - [aux_sym_arrow_function_token1] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1005), - [aux_sym_cast_type_token1] = ACTIONS(1007), - [aux_sym_echo_statement_token1] = ACTIONS(1007), - [anon_sym_unset] = ACTIONS(1007), - [aux_sym_declare_statement_token1] = ACTIONS(1007), - [aux_sym_declare_statement_token2] = 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_expression_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_match_expression_token1] = ACTIONS(1007), - [aux_sym_match_default_expression_token1] = ACTIONS(1007), - [aux_sym_switch_statement_token1] = ACTIONS(1007), - [aux_sym_switch_block_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), - [aux_sym_clone_expression_token1] = ACTIONS(1007), - [aux_sym_print_intrinsic_token1] = ACTIONS(1007), - [aux_sym_object_creation_expression_token1] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [sym_shell_command_expression] = ACTIONS(1005), - [aux_sym__list_destructing_token1] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_self] = ACTIONS(1007), - [anon_sym_parent] = ACTIONS(1007), - [anon_sym_POUND_LBRACK] = ACTIONS(1005), - [aux_sym_encapsed_string_token1] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1005), - [aux_sym_string_token1] = ACTIONS(1005), - [sym_boolean] = ACTIONS(1007), - [sym_null] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1005), - [aux_sym_yield_expression_token1] = 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__automatic_semicolon] = ACTIONS(1009), - [sym_heredoc] = ACTIONS(1005), - }, - [470] = { - [sym_text_interpolation] = STATE(470), - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_name] = ACTIONS(1013), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1015), - [aux_sym_function_static_declaration_token1] = ACTIONS(1013), - [aux_sym_global_declaration_token1] = ACTIONS(1013), - [aux_sym_namespace_definition_token1] = ACTIONS(1013), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1013), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1013), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1013), - [anon_sym_BSLASH] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [aux_sym_trait_declaration_token1] = ACTIONS(1013), - [aux_sym_interface_declaration_token1] = ACTIONS(1013), - [aux_sym_enum_declaration_token1] = ACTIONS(1013), - [aux_sym_enum_case_token1] = ACTIONS(1013), - [aux_sym_class_declaration_token1] = ACTIONS(1013), - [aux_sym_final_modifier_token1] = ACTIONS(1013), - [aux_sym_abstract_modifier_token1] = ACTIONS(1013), - [aux_sym_visibility_modifier_token1] = ACTIONS(1013), - [aux_sym_visibility_modifier_token2] = ACTIONS(1013), - [aux_sym_visibility_modifier_token3] = ACTIONS(1013), - [aux_sym_arrow_function_token1] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1011), - [aux_sym_cast_type_token1] = ACTIONS(1013), - [aux_sym_echo_statement_token1] = ACTIONS(1013), - [anon_sym_unset] = ACTIONS(1013), - [aux_sym_declare_statement_token1] = ACTIONS(1013), - [aux_sym_declare_statement_token2] = ACTIONS(1013), - [sym_float] = ACTIONS(1013), - [aux_sym_try_statement_token1] = ACTIONS(1013), - [aux_sym_goto_statement_token1] = ACTIONS(1013), - [aux_sym_continue_statement_token1] = ACTIONS(1013), - [aux_sym_break_statement_token1] = ACTIONS(1013), - [sym_integer] = ACTIONS(1013), - [aux_sym_return_statement_token1] = ACTIONS(1013), - [aux_sym_throw_expression_token1] = ACTIONS(1013), - [aux_sym_while_statement_token1] = ACTIONS(1013), - [aux_sym_while_statement_token2] = ACTIONS(1013), - [aux_sym_do_statement_token1] = ACTIONS(1013), - [aux_sym_for_statement_token1] = ACTIONS(1013), - [aux_sym_for_statement_token2] = ACTIONS(1013), - [aux_sym_foreach_statement_token1] = ACTIONS(1013), - [aux_sym_foreach_statement_token2] = ACTIONS(1013), - [aux_sym_if_statement_token1] = ACTIONS(1013), - [aux_sym_if_statement_token2] = ACTIONS(1013), - [aux_sym_else_if_clause_token1] = ACTIONS(1013), - [aux_sym_else_clause_token1] = ACTIONS(1013), - [aux_sym_match_expression_token1] = ACTIONS(1013), - [aux_sym_match_default_expression_token1] = ACTIONS(1013), - [aux_sym_switch_statement_token1] = ACTIONS(1013), - [aux_sym_switch_block_token1] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_TILDE] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1011), - [aux_sym_clone_expression_token1] = ACTIONS(1013), - [aux_sym_print_intrinsic_token1] = ACTIONS(1013), - [aux_sym_object_creation_expression_token1] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1011), - [sym_shell_command_expression] = ACTIONS(1011), - [aux_sym__list_destructing_token1] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1011), - [anon_sym_self] = ACTIONS(1013), - [anon_sym_parent] = ACTIONS(1013), - [anon_sym_POUND_LBRACK] = ACTIONS(1011), - [aux_sym_encapsed_string_token1] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(1011), - [aux_sym_string_token1] = ACTIONS(1011), - [sym_boolean] = ACTIONS(1013), - [sym_null] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1011), - [aux_sym_yield_expression_token1] = ACTIONS(1013), - [aux_sym_include_expression_token1] = ACTIONS(1013), - [aux_sym_include_once_expression_token1] = ACTIONS(1013), - [aux_sym_require_expression_token1] = ACTIONS(1013), - [aux_sym_require_once_expression_token1] = ACTIONS(1013), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1015), - [sym_heredoc] = ACTIONS(1011), - }, - [471] = { - [sym_text_interpolation] = STATE(471), - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1021), - [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_enum_declaration_token1] = ACTIONS(1019), - [aux_sym_enum_case_token1] = ACTIONS(1019), - [aux_sym_class_declaration_token1] = ACTIONS(1019), - [aux_sym_final_modifier_token1] = ACTIONS(1019), - [aux_sym_abstract_modifier_token1] = ACTIONS(1019), - [aux_sym_visibility_modifier_token1] = ACTIONS(1019), - [aux_sym_visibility_modifier_token2] = ACTIONS(1019), - [aux_sym_visibility_modifier_token3] = ACTIONS(1019), - [aux_sym_arrow_function_token1] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1017), - [aux_sym_cast_type_token1] = ACTIONS(1019), - [aux_sym_echo_statement_token1] = ACTIONS(1019), - [anon_sym_unset] = ACTIONS(1019), - [aux_sym_declare_statement_token1] = ACTIONS(1019), - [aux_sym_declare_statement_token2] = 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_expression_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_match_expression_token1] = ACTIONS(1019), - [aux_sym_match_default_expression_token1] = ACTIONS(1019), - [aux_sym_switch_statement_token1] = ACTIONS(1019), - [aux_sym_switch_block_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), - [aux_sym_clone_expression_token1] = ACTIONS(1019), - [aux_sym_print_intrinsic_token1] = ACTIONS(1019), - [aux_sym_object_creation_expression_token1] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [sym_shell_command_expression] = ACTIONS(1017), - [aux_sym__list_destructing_token1] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_self] = ACTIONS(1019), - [anon_sym_parent] = ACTIONS(1019), - [anon_sym_POUND_LBRACK] = ACTIONS(1017), - [aux_sym_encapsed_string_token1] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [anon_sym_SQUOTE] = ACTIONS(1017), - [aux_sym_string_token1] = ACTIONS(1017), - [sym_boolean] = ACTIONS(1019), - [sym_null] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1017), - [aux_sym_yield_expression_token1] = 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__automatic_semicolon] = ACTIONS(1021), - [sym_heredoc] = ACTIONS(1017), - }, - [472] = { - [sym_text_interpolation] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_name] = ACTIONS(1025), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1027), - [aux_sym_function_static_declaration_token1] = ACTIONS(1025), - [aux_sym_global_declaration_token1] = ACTIONS(1025), - [aux_sym_namespace_definition_token1] = ACTIONS(1025), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1025), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1025), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1025), - [anon_sym_BSLASH] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [aux_sym_trait_declaration_token1] = ACTIONS(1025), - [aux_sym_interface_declaration_token1] = ACTIONS(1025), - [aux_sym_enum_declaration_token1] = ACTIONS(1025), - [aux_sym_enum_case_token1] = ACTIONS(1025), - [aux_sym_class_declaration_token1] = ACTIONS(1025), - [aux_sym_final_modifier_token1] = ACTIONS(1025), - [aux_sym_abstract_modifier_token1] = ACTIONS(1025), - [aux_sym_visibility_modifier_token1] = ACTIONS(1025), - [aux_sym_visibility_modifier_token2] = ACTIONS(1025), - [aux_sym_visibility_modifier_token3] = ACTIONS(1025), - [aux_sym_arrow_function_token1] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1023), - [aux_sym_cast_type_token1] = ACTIONS(1025), - [aux_sym_echo_statement_token1] = ACTIONS(1025), - [anon_sym_unset] = ACTIONS(1025), - [aux_sym_declare_statement_token1] = ACTIONS(1025), - [aux_sym_declare_statement_token2] = ACTIONS(1025), - [sym_float] = ACTIONS(1025), - [aux_sym_try_statement_token1] = ACTIONS(1025), - [aux_sym_goto_statement_token1] = ACTIONS(1025), - [aux_sym_continue_statement_token1] = ACTIONS(1025), - [aux_sym_break_statement_token1] = ACTIONS(1025), - [sym_integer] = ACTIONS(1025), - [aux_sym_return_statement_token1] = ACTIONS(1025), - [aux_sym_throw_expression_token1] = ACTIONS(1025), - [aux_sym_while_statement_token1] = ACTIONS(1025), - [aux_sym_while_statement_token2] = ACTIONS(1025), - [aux_sym_do_statement_token1] = ACTIONS(1025), - [aux_sym_for_statement_token1] = ACTIONS(1025), - [aux_sym_for_statement_token2] = ACTIONS(1025), - [aux_sym_foreach_statement_token1] = ACTIONS(1025), - [aux_sym_foreach_statement_token2] = ACTIONS(1025), - [aux_sym_if_statement_token1] = ACTIONS(1025), - [aux_sym_if_statement_token2] = ACTIONS(1025), - [aux_sym_else_if_clause_token1] = ACTIONS(1025), - [aux_sym_else_clause_token1] = ACTIONS(1025), - [aux_sym_match_expression_token1] = ACTIONS(1025), - [aux_sym_match_default_expression_token1] = ACTIONS(1025), - [aux_sym_switch_statement_token1] = ACTIONS(1025), - [aux_sym_switch_block_token1] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1023), - [aux_sym_clone_expression_token1] = ACTIONS(1025), - [aux_sym_print_intrinsic_token1] = ACTIONS(1025), - [aux_sym_object_creation_expression_token1] = ACTIONS(1025), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [sym_shell_command_expression] = ACTIONS(1023), - [aux_sym__list_destructing_token1] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_self] = ACTIONS(1025), - [anon_sym_parent] = ACTIONS(1025), - [anon_sym_POUND_LBRACK] = ACTIONS(1023), - [aux_sym_encapsed_string_token1] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [aux_sym_string_token1] = ACTIONS(1023), - [sym_boolean] = ACTIONS(1025), - [sym_null] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1023), - [aux_sym_yield_expression_token1] = ACTIONS(1025), - [aux_sym_include_expression_token1] = ACTIONS(1025), - [aux_sym_include_once_expression_token1] = ACTIONS(1025), - [aux_sym_require_expression_token1] = ACTIONS(1025), - [aux_sym_require_once_expression_token1] = ACTIONS(1025), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1027), - [sym_heredoc] = ACTIONS(1023), - }, - [473] = { - [sym_text_interpolation] = STATE(473), - [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_enum_declaration_token1] = ACTIONS(1031), - [aux_sym_enum_case_token1] = ACTIONS(1031), - [aux_sym_class_declaration_token1] = ACTIONS(1031), - [aux_sym_final_modifier_token1] = ACTIONS(1031), - [aux_sym_abstract_modifier_token1] = ACTIONS(1031), - [aux_sym_visibility_modifier_token1] = ACTIONS(1031), - [aux_sym_visibility_modifier_token2] = ACTIONS(1031), - [aux_sym_visibility_modifier_token3] = ACTIONS(1031), - [aux_sym_arrow_function_token1] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1029), - [aux_sym_cast_type_token1] = ACTIONS(1031), - [aux_sym_echo_statement_token1] = ACTIONS(1031), - [anon_sym_unset] = ACTIONS(1031), - [aux_sym_declare_statement_token1] = ACTIONS(1031), - [aux_sym_declare_statement_token2] = 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_expression_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_match_expression_token1] = ACTIONS(1031), - [aux_sym_match_default_expression_token1] = ACTIONS(1031), - [aux_sym_switch_statement_token1] = ACTIONS(1031), - [aux_sym_switch_block_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), - [aux_sym_clone_expression_token1] = ACTIONS(1031), - [aux_sym_print_intrinsic_token1] = ACTIONS(1031), - [aux_sym_object_creation_expression_token1] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [sym_shell_command_expression] = ACTIONS(1029), - [aux_sym__list_destructing_token1] = ACTIONS(1031), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_self] = ACTIONS(1031), - [anon_sym_parent] = ACTIONS(1031), - [anon_sym_POUND_LBRACK] = ACTIONS(1029), - [aux_sym_encapsed_string_token1] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1029), - [aux_sym_string_token1] = ACTIONS(1029), - [sym_boolean] = ACTIONS(1031), - [sym_null] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1029), - [aux_sym_yield_expression_token1] = 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__automatic_semicolon] = ACTIONS(1029), - [sym_heredoc] = ACTIONS(1029), - }, - [474] = { - [sym_text_interpolation] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(1033), - [sym_name] = ACTIONS(1035), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1037), - [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_enum_declaration_token1] = ACTIONS(1035), - [aux_sym_enum_case_token1] = ACTIONS(1035), - [aux_sym_class_declaration_token1] = ACTIONS(1035), - [aux_sym_final_modifier_token1] = ACTIONS(1035), - [aux_sym_abstract_modifier_token1] = ACTIONS(1035), - [aux_sym_visibility_modifier_token1] = ACTIONS(1035), - [aux_sym_visibility_modifier_token2] = ACTIONS(1035), - [aux_sym_visibility_modifier_token3] = ACTIONS(1035), - [aux_sym_arrow_function_token1] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1033), - [aux_sym_cast_type_token1] = ACTIONS(1035), - [aux_sym_echo_statement_token1] = ACTIONS(1035), - [anon_sym_unset] = ACTIONS(1035), - [aux_sym_declare_statement_token1] = ACTIONS(1035), - [aux_sym_declare_statement_token2] = 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_expression_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_match_expression_token1] = ACTIONS(1035), - [aux_sym_match_default_expression_token1] = ACTIONS(1035), - [aux_sym_switch_statement_token1] = ACTIONS(1035), - [aux_sym_switch_block_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), - [aux_sym_clone_expression_token1] = ACTIONS(1035), - [aux_sym_print_intrinsic_token1] = ACTIONS(1035), - [aux_sym_object_creation_expression_token1] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [sym_shell_command_expression] = ACTIONS(1033), - [aux_sym__list_destructing_token1] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_self] = ACTIONS(1035), - [anon_sym_parent] = ACTIONS(1035), - [anon_sym_POUND_LBRACK] = ACTIONS(1033), - [aux_sym_encapsed_string_token1] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [aux_sym_string_token1] = ACTIONS(1033), - [sym_boolean] = ACTIONS(1035), - [sym_null] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(1033), - [aux_sym_yield_expression_token1] = 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__automatic_semicolon] = ACTIONS(1037), - [sym_heredoc] = ACTIONS(1033), - }, - [475] = { - [sym_text_interpolation] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1039), - [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(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [aux_sym_trait_declaration_token1] = ACTIONS(1041), - [aux_sym_interface_declaration_token1] = ACTIONS(1041), - [aux_sym_enum_declaration_token1] = ACTIONS(1041), - [aux_sym_enum_case_token1] = ACTIONS(1041), - [aux_sym_class_declaration_token1] = ACTIONS(1041), - [aux_sym_final_modifier_token1] = ACTIONS(1041), - [aux_sym_abstract_modifier_token1] = ACTIONS(1041), - [aux_sym_visibility_modifier_token1] = ACTIONS(1041), - [aux_sym_visibility_modifier_token2] = ACTIONS(1041), - [aux_sym_visibility_modifier_token3] = ACTIONS(1041), - [aux_sym_arrow_function_token1] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1039), - [aux_sym_cast_type_token1] = ACTIONS(1041), - [aux_sym_echo_statement_token1] = ACTIONS(1041), - [anon_sym_unset] = ACTIONS(1041), - [aux_sym_declare_statement_token1] = ACTIONS(1041), - [aux_sym_declare_statement_token2] = 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_expression_token1] = ACTIONS(1041), - [aux_sym_while_statement_token1] = ACTIONS(1041), - [aux_sym_while_statement_token2] = ACTIONS(1041), - [aux_sym_do_statement_token1] = ACTIONS(1041), - [aux_sym_for_statement_token1] = ACTIONS(1041), - [aux_sym_for_statement_token2] = ACTIONS(1041), - [aux_sym_foreach_statement_token1] = ACTIONS(1041), - [aux_sym_foreach_statement_token2] = ACTIONS(1041), - [aux_sym_if_statement_token1] = ACTIONS(1041), - [aux_sym_if_statement_token2] = ACTIONS(1041), - [aux_sym_else_if_clause_token1] = ACTIONS(1041), - [aux_sym_else_clause_token1] = ACTIONS(1041), - [aux_sym_match_expression_token1] = ACTIONS(1041), - [aux_sym_match_default_expression_token1] = ACTIONS(1041), - [aux_sym_switch_statement_token1] = ACTIONS(1041), - [aux_sym_switch_block_token1] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1039), - [aux_sym_clone_expression_token1] = ACTIONS(1041), - [aux_sym_print_intrinsic_token1] = ACTIONS(1041), - [aux_sym_object_creation_expression_token1] = ACTIONS(1041), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [sym_shell_command_expression] = ACTIONS(1039), - [aux_sym__list_destructing_token1] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_self] = ACTIONS(1041), - [anon_sym_parent] = ACTIONS(1041), - [anon_sym_POUND_LBRACK] = ACTIONS(1039), - [aux_sym_encapsed_string_token1] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1039), - [aux_sym_string_token1] = ACTIONS(1039), - [sym_boolean] = ACTIONS(1041), - [sym_null] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1039), - [aux_sym_yield_expression_token1] = 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__automatic_semicolon] = ACTIONS(1043), - [sym_heredoc] = ACTIONS(1039), - }, - [476] = { - [sym_text_interpolation] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(1045), - [sym_name] = ACTIONS(1047), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1049), - [aux_sym_function_static_declaration_token1] = ACTIONS(1047), - [aux_sym_global_declaration_token1] = ACTIONS(1047), - [aux_sym_namespace_definition_token1] = ACTIONS(1047), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1047), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1047), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1047), - [anon_sym_BSLASH] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1045), - [aux_sym_trait_declaration_token1] = ACTIONS(1047), - [aux_sym_interface_declaration_token1] = ACTIONS(1047), - [aux_sym_enum_declaration_token1] = ACTIONS(1047), - [aux_sym_enum_case_token1] = ACTIONS(1047), - [aux_sym_class_declaration_token1] = ACTIONS(1047), - [aux_sym_final_modifier_token1] = ACTIONS(1047), - [aux_sym_abstract_modifier_token1] = ACTIONS(1047), - [aux_sym_visibility_modifier_token1] = ACTIONS(1047), - [aux_sym_visibility_modifier_token2] = ACTIONS(1047), - [aux_sym_visibility_modifier_token3] = ACTIONS(1047), - [aux_sym_arrow_function_token1] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1045), - [aux_sym_cast_type_token1] = ACTIONS(1047), - [aux_sym_echo_statement_token1] = ACTIONS(1047), - [anon_sym_unset] = ACTIONS(1047), - [aux_sym_declare_statement_token1] = ACTIONS(1047), - [aux_sym_declare_statement_token2] = ACTIONS(1047), - [sym_float] = ACTIONS(1047), - [aux_sym_try_statement_token1] = ACTIONS(1047), - [aux_sym_goto_statement_token1] = ACTIONS(1047), - [aux_sym_continue_statement_token1] = ACTIONS(1047), - [aux_sym_break_statement_token1] = ACTIONS(1047), - [sym_integer] = ACTIONS(1047), - [aux_sym_return_statement_token1] = ACTIONS(1047), - [aux_sym_throw_expression_token1] = ACTIONS(1047), - [aux_sym_while_statement_token1] = ACTIONS(1047), - [aux_sym_while_statement_token2] = ACTIONS(1047), - [aux_sym_do_statement_token1] = ACTIONS(1047), - [aux_sym_for_statement_token1] = ACTIONS(1047), - [aux_sym_for_statement_token2] = ACTIONS(1047), - [aux_sym_foreach_statement_token1] = ACTIONS(1047), - [aux_sym_foreach_statement_token2] = ACTIONS(1047), - [aux_sym_if_statement_token1] = ACTIONS(1047), - [aux_sym_if_statement_token2] = ACTIONS(1047), - [aux_sym_else_if_clause_token1] = ACTIONS(1047), - [aux_sym_else_clause_token1] = ACTIONS(1047), - [aux_sym_match_expression_token1] = ACTIONS(1047), - [aux_sym_match_default_expression_token1] = ACTIONS(1047), - [aux_sym_switch_statement_token1] = ACTIONS(1047), - [aux_sym_switch_block_token1] = ACTIONS(1047), - [anon_sym_AT] = ACTIONS(1045), - [anon_sym_PLUS] = ACTIONS(1047), - [anon_sym_DASH] = ACTIONS(1047), - [anon_sym_TILDE] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [aux_sym_clone_expression_token1] = ACTIONS(1047), - [aux_sym_print_intrinsic_token1] = ACTIONS(1047), - [aux_sym_object_creation_expression_token1] = ACTIONS(1047), - [anon_sym_PLUS_PLUS] = ACTIONS(1045), - [anon_sym_DASH_DASH] = ACTIONS(1045), - [sym_shell_command_expression] = ACTIONS(1045), - [aux_sym__list_destructing_token1] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_self] = ACTIONS(1047), - [anon_sym_parent] = ACTIONS(1047), - [anon_sym_POUND_LBRACK] = ACTIONS(1045), - [aux_sym_encapsed_string_token1] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1045), - [anon_sym_SQUOTE] = ACTIONS(1045), - [aux_sym_string_token1] = ACTIONS(1045), - [sym_boolean] = ACTIONS(1047), - [sym_null] = ACTIONS(1047), - [anon_sym_DOLLAR] = ACTIONS(1045), - [aux_sym_yield_expression_token1] = ACTIONS(1047), - [aux_sym_include_expression_token1] = ACTIONS(1047), - [aux_sym_include_once_expression_token1] = ACTIONS(1047), - [aux_sym_require_expression_token1] = ACTIONS(1047), - [aux_sym_require_once_expression_token1] = ACTIONS(1047), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1049), - [sym_heredoc] = ACTIONS(1045), - }, - [477] = { - [sym_text_interpolation] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_name] = ACTIONS(1053), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1055), - [aux_sym_function_static_declaration_token1] = ACTIONS(1053), - [aux_sym_global_declaration_token1] = ACTIONS(1053), - [aux_sym_namespace_definition_token1] = ACTIONS(1053), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1053), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1053), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1053), - [anon_sym_BSLASH] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [aux_sym_trait_declaration_token1] = ACTIONS(1053), - [aux_sym_interface_declaration_token1] = ACTIONS(1053), - [aux_sym_enum_declaration_token1] = ACTIONS(1053), - [aux_sym_enum_case_token1] = ACTIONS(1053), - [aux_sym_class_declaration_token1] = ACTIONS(1053), - [aux_sym_final_modifier_token1] = ACTIONS(1053), - [aux_sym_abstract_modifier_token1] = ACTIONS(1053), - [aux_sym_visibility_modifier_token1] = ACTIONS(1053), - [aux_sym_visibility_modifier_token2] = ACTIONS(1053), - [aux_sym_visibility_modifier_token3] = ACTIONS(1053), - [aux_sym_arrow_function_token1] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(1051), - [aux_sym_cast_type_token1] = ACTIONS(1053), - [aux_sym_echo_statement_token1] = ACTIONS(1053), - [anon_sym_unset] = ACTIONS(1053), - [aux_sym_declare_statement_token1] = ACTIONS(1053), - [aux_sym_declare_statement_token2] = ACTIONS(1053), - [sym_float] = ACTIONS(1053), - [aux_sym_try_statement_token1] = ACTIONS(1053), - [aux_sym_goto_statement_token1] = ACTIONS(1053), - [aux_sym_continue_statement_token1] = ACTIONS(1053), - [aux_sym_break_statement_token1] = ACTIONS(1053), - [sym_integer] = ACTIONS(1053), - [aux_sym_return_statement_token1] = ACTIONS(1053), - [aux_sym_throw_expression_token1] = ACTIONS(1053), - [aux_sym_while_statement_token1] = ACTIONS(1053), - [aux_sym_while_statement_token2] = ACTIONS(1053), - [aux_sym_do_statement_token1] = ACTIONS(1053), - [aux_sym_for_statement_token1] = ACTIONS(1053), - [aux_sym_for_statement_token2] = ACTIONS(1053), - [aux_sym_foreach_statement_token1] = ACTIONS(1053), - [aux_sym_foreach_statement_token2] = ACTIONS(1053), - [aux_sym_if_statement_token1] = ACTIONS(1053), - [aux_sym_if_statement_token2] = ACTIONS(1053), - [aux_sym_else_if_clause_token1] = ACTIONS(1053), - [aux_sym_else_clause_token1] = ACTIONS(1053), - [aux_sym_match_expression_token1] = ACTIONS(1053), - [aux_sym_match_default_expression_token1] = ACTIONS(1053), - [aux_sym_switch_statement_token1] = ACTIONS(1053), - [aux_sym_switch_block_token1] = ACTIONS(1053), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_TILDE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [aux_sym_clone_expression_token1] = ACTIONS(1053), - [aux_sym_print_intrinsic_token1] = ACTIONS(1053), - [aux_sym_object_creation_expression_token1] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1051), - [sym_shell_command_expression] = ACTIONS(1051), - [aux_sym__list_destructing_token1] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_self] = ACTIONS(1053), - [anon_sym_parent] = ACTIONS(1053), - [anon_sym_POUND_LBRACK] = ACTIONS(1051), - [aux_sym_encapsed_string_token1] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1051), - [aux_sym_string_token1] = ACTIONS(1051), - [sym_boolean] = ACTIONS(1053), - [sym_null] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1051), - [aux_sym_yield_expression_token1] = ACTIONS(1053), - [aux_sym_include_expression_token1] = ACTIONS(1053), - [aux_sym_include_once_expression_token1] = ACTIONS(1053), - [aux_sym_require_expression_token1] = ACTIONS(1053), - [aux_sym_require_once_expression_token1] = ACTIONS(1053), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1055), - [sym_heredoc] = ACTIONS(1051), - }, - [478] = { - [sym_text_interpolation] = STATE(478), - [ts_builtin_sym_end] = ACTIONS(1057), - [sym_name] = ACTIONS(1059), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1057), - [aux_sym_function_static_declaration_token1] = ACTIONS(1059), - [aux_sym_global_declaration_token1] = ACTIONS(1059), - [aux_sym_namespace_definition_token1] = ACTIONS(1059), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1059), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1059), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1059), - [anon_sym_BSLASH] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(1057), - [aux_sym_trait_declaration_token1] = ACTIONS(1059), - [aux_sym_interface_declaration_token1] = ACTIONS(1059), - [aux_sym_enum_declaration_token1] = ACTIONS(1059), - [aux_sym_enum_case_token1] = ACTIONS(1059), - [aux_sym_class_declaration_token1] = ACTIONS(1059), - [aux_sym_final_modifier_token1] = ACTIONS(1059), - [aux_sym_abstract_modifier_token1] = ACTIONS(1059), - [aux_sym_visibility_modifier_token1] = ACTIONS(1059), - [aux_sym_visibility_modifier_token2] = ACTIONS(1059), - [aux_sym_visibility_modifier_token3] = ACTIONS(1059), - [aux_sym_arrow_function_token1] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1057), - [aux_sym_cast_type_token1] = ACTIONS(1059), - [aux_sym_echo_statement_token1] = ACTIONS(1059), - [anon_sym_unset] = ACTIONS(1059), - [aux_sym_declare_statement_token1] = ACTIONS(1059), - [aux_sym_declare_statement_token2] = ACTIONS(1059), - [sym_float] = ACTIONS(1059), - [aux_sym_try_statement_token1] = ACTIONS(1059), - [aux_sym_goto_statement_token1] = ACTIONS(1059), - [aux_sym_continue_statement_token1] = ACTIONS(1059), - [aux_sym_break_statement_token1] = ACTIONS(1059), - [sym_integer] = ACTIONS(1059), - [aux_sym_return_statement_token1] = ACTIONS(1059), - [aux_sym_throw_expression_token1] = ACTIONS(1059), - [aux_sym_while_statement_token1] = ACTIONS(1059), - [aux_sym_while_statement_token2] = ACTIONS(1059), - [aux_sym_do_statement_token1] = ACTIONS(1059), - [aux_sym_for_statement_token1] = ACTIONS(1059), - [aux_sym_for_statement_token2] = ACTIONS(1059), - [aux_sym_foreach_statement_token1] = ACTIONS(1059), - [aux_sym_foreach_statement_token2] = ACTIONS(1059), - [aux_sym_if_statement_token1] = ACTIONS(1059), - [aux_sym_if_statement_token2] = ACTIONS(1059), - [aux_sym_else_if_clause_token1] = ACTIONS(1059), - [aux_sym_else_clause_token1] = ACTIONS(1059), - [aux_sym_match_expression_token1] = ACTIONS(1059), - [aux_sym_match_default_expression_token1] = ACTIONS(1059), - [aux_sym_switch_statement_token1] = ACTIONS(1059), - [aux_sym_switch_block_token1] = ACTIONS(1059), - [anon_sym_AT] = ACTIONS(1057), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [aux_sym_clone_expression_token1] = ACTIONS(1059), - [aux_sym_print_intrinsic_token1] = ACTIONS(1059), - [aux_sym_object_creation_expression_token1] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1057), - [anon_sym_DASH_DASH] = ACTIONS(1057), - [sym_shell_command_expression] = ACTIONS(1057), - [aux_sym__list_destructing_token1] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_self] = ACTIONS(1059), - [anon_sym_parent] = ACTIONS(1059), - [anon_sym_POUND_LBRACK] = ACTIONS(1057), - [aux_sym_encapsed_string_token1] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1057), - [aux_sym_string_token1] = ACTIONS(1057), - [sym_boolean] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1057), - [aux_sym_yield_expression_token1] = ACTIONS(1059), - [aux_sym_include_expression_token1] = ACTIONS(1059), - [aux_sym_include_once_expression_token1] = ACTIONS(1059), - [aux_sym_require_expression_token1] = ACTIONS(1059), - [aux_sym_require_once_expression_token1] = ACTIONS(1059), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1057), - }, - [479] = { - [sym_text_interpolation] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1061), - [sym_name] = ACTIONS(1063), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1061), - [aux_sym_function_static_declaration_token1] = ACTIONS(1063), - [aux_sym_global_declaration_token1] = ACTIONS(1063), - [aux_sym_namespace_definition_token1] = ACTIONS(1063), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1063), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1063), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1061), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [aux_sym_trait_declaration_token1] = ACTIONS(1063), - [aux_sym_interface_declaration_token1] = ACTIONS(1063), - [aux_sym_enum_declaration_token1] = ACTIONS(1063), - [aux_sym_enum_case_token1] = ACTIONS(1063), - [aux_sym_class_declaration_token1] = ACTIONS(1063), - [aux_sym_final_modifier_token1] = ACTIONS(1063), - [aux_sym_abstract_modifier_token1] = ACTIONS(1063), - [aux_sym_visibility_modifier_token1] = ACTIONS(1063), - [aux_sym_visibility_modifier_token2] = ACTIONS(1063), - [aux_sym_visibility_modifier_token3] = ACTIONS(1063), - [aux_sym_arrow_function_token1] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1061), - [aux_sym_cast_type_token1] = ACTIONS(1063), - [aux_sym_echo_statement_token1] = ACTIONS(1063), - [anon_sym_unset] = ACTIONS(1063), - [aux_sym_declare_statement_token1] = ACTIONS(1063), - [aux_sym_declare_statement_token2] = ACTIONS(1063), - [sym_float] = ACTIONS(1063), - [aux_sym_try_statement_token1] = ACTIONS(1063), - [aux_sym_goto_statement_token1] = ACTIONS(1063), - [aux_sym_continue_statement_token1] = ACTIONS(1063), - [aux_sym_break_statement_token1] = ACTIONS(1063), - [sym_integer] = ACTIONS(1063), - [aux_sym_return_statement_token1] = ACTIONS(1063), - [aux_sym_throw_expression_token1] = ACTIONS(1063), - [aux_sym_while_statement_token1] = ACTIONS(1063), - [aux_sym_while_statement_token2] = ACTIONS(1063), - [aux_sym_do_statement_token1] = ACTIONS(1063), - [aux_sym_for_statement_token1] = ACTIONS(1063), - [aux_sym_for_statement_token2] = ACTIONS(1063), - [aux_sym_foreach_statement_token1] = ACTIONS(1063), - [aux_sym_foreach_statement_token2] = ACTIONS(1063), - [aux_sym_if_statement_token1] = ACTIONS(1063), - [aux_sym_if_statement_token2] = ACTIONS(1063), - [aux_sym_else_if_clause_token1] = ACTIONS(1063), - [aux_sym_else_clause_token1] = ACTIONS(1063), - [aux_sym_match_expression_token1] = ACTIONS(1063), - [aux_sym_match_default_expression_token1] = ACTIONS(1063), - [aux_sym_switch_statement_token1] = ACTIONS(1063), - [aux_sym_switch_block_token1] = ACTIONS(1063), - [anon_sym_AT] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1061), - [aux_sym_clone_expression_token1] = ACTIONS(1063), - [aux_sym_print_intrinsic_token1] = ACTIONS(1063), - [aux_sym_object_creation_expression_token1] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1061), - [anon_sym_DASH_DASH] = ACTIONS(1061), - [sym_shell_command_expression] = ACTIONS(1061), - [aux_sym__list_destructing_token1] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_self] = ACTIONS(1063), - [anon_sym_parent] = ACTIONS(1063), - [anon_sym_POUND_LBRACK] = ACTIONS(1061), - [aux_sym_encapsed_string_token1] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [anon_sym_SQUOTE] = ACTIONS(1061), - [aux_sym_string_token1] = ACTIONS(1061), - [sym_boolean] = ACTIONS(1063), - [sym_null] = ACTIONS(1063), - [anon_sym_DOLLAR] = ACTIONS(1061), - [aux_sym_yield_expression_token1] = ACTIONS(1063), - [aux_sym_include_expression_token1] = ACTIONS(1063), - [aux_sym_include_once_expression_token1] = ACTIONS(1063), - [aux_sym_require_expression_token1] = ACTIONS(1063), - [aux_sym_require_once_expression_token1] = ACTIONS(1063), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1061), - }, - [480] = { - [sym_text_interpolation] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1065), - [sym_name] = ACTIONS(1067), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1065), - [aux_sym_function_static_declaration_token1] = ACTIONS(1067), - [aux_sym_global_declaration_token1] = ACTIONS(1067), - [aux_sym_namespace_definition_token1] = ACTIONS(1067), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1067), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1067), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1067), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [aux_sym_trait_declaration_token1] = ACTIONS(1067), - [aux_sym_interface_declaration_token1] = ACTIONS(1067), - [aux_sym_enum_declaration_token1] = ACTIONS(1067), - [aux_sym_enum_case_token1] = ACTIONS(1067), - [aux_sym_class_declaration_token1] = ACTIONS(1067), - [aux_sym_final_modifier_token1] = ACTIONS(1067), - [aux_sym_abstract_modifier_token1] = ACTIONS(1067), - [aux_sym_visibility_modifier_token1] = ACTIONS(1067), - [aux_sym_visibility_modifier_token2] = ACTIONS(1067), - [aux_sym_visibility_modifier_token3] = ACTIONS(1067), - [aux_sym_arrow_function_token1] = ACTIONS(1067), - [anon_sym_LPAREN] = ACTIONS(1065), - [aux_sym_cast_type_token1] = ACTIONS(1067), - [aux_sym_echo_statement_token1] = ACTIONS(1067), - [anon_sym_unset] = ACTIONS(1067), - [aux_sym_declare_statement_token1] = ACTIONS(1067), - [aux_sym_declare_statement_token2] = ACTIONS(1067), - [sym_float] = ACTIONS(1067), - [aux_sym_try_statement_token1] = ACTIONS(1067), - [aux_sym_goto_statement_token1] = ACTIONS(1067), - [aux_sym_continue_statement_token1] = ACTIONS(1067), - [aux_sym_break_statement_token1] = ACTIONS(1067), - [sym_integer] = ACTIONS(1067), - [aux_sym_return_statement_token1] = ACTIONS(1067), - [aux_sym_throw_expression_token1] = ACTIONS(1067), - [aux_sym_while_statement_token1] = ACTIONS(1067), - [aux_sym_while_statement_token2] = ACTIONS(1067), - [aux_sym_do_statement_token1] = ACTIONS(1067), - [aux_sym_for_statement_token1] = ACTIONS(1067), - [aux_sym_for_statement_token2] = ACTIONS(1067), - [aux_sym_foreach_statement_token1] = ACTIONS(1067), - [aux_sym_foreach_statement_token2] = ACTIONS(1067), - [aux_sym_if_statement_token1] = ACTIONS(1067), - [aux_sym_if_statement_token2] = ACTIONS(1067), - [aux_sym_else_if_clause_token1] = ACTIONS(1067), - [aux_sym_else_clause_token1] = ACTIONS(1067), - [aux_sym_match_expression_token1] = ACTIONS(1067), - [aux_sym_match_default_expression_token1] = ACTIONS(1067), - [aux_sym_switch_statement_token1] = ACTIONS(1067), - [aux_sym_switch_block_token1] = ACTIONS(1067), - [anon_sym_AT] = ACTIONS(1065), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [aux_sym_clone_expression_token1] = ACTIONS(1067), - [aux_sym_print_intrinsic_token1] = ACTIONS(1067), - [aux_sym_object_creation_expression_token1] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [sym_shell_command_expression] = ACTIONS(1065), - [aux_sym__list_destructing_token1] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_self] = ACTIONS(1067), - [anon_sym_parent] = ACTIONS(1067), - [anon_sym_POUND_LBRACK] = ACTIONS(1065), - [aux_sym_encapsed_string_token1] = ACTIONS(1065), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_SQUOTE] = ACTIONS(1065), - [aux_sym_string_token1] = ACTIONS(1065), - [sym_boolean] = ACTIONS(1067), - [sym_null] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1065), - [aux_sym_yield_expression_token1] = ACTIONS(1067), - [aux_sym_include_expression_token1] = ACTIONS(1067), - [aux_sym_include_once_expression_token1] = ACTIONS(1067), - [aux_sym_require_expression_token1] = ACTIONS(1067), - [aux_sym_require_once_expression_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1065), - }, - [481] = { - [sym_text_interpolation] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1069), - [sym_name] = ACTIONS(1071), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1069), - [aux_sym_function_static_declaration_token1] = ACTIONS(1071), - [aux_sym_global_declaration_token1] = ACTIONS(1071), - [aux_sym_namespace_definition_token1] = ACTIONS(1071), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1071), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1071), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1069), - [aux_sym_trait_declaration_token1] = ACTIONS(1071), - [aux_sym_interface_declaration_token1] = ACTIONS(1071), - [aux_sym_enum_declaration_token1] = ACTIONS(1071), - [aux_sym_enum_case_token1] = ACTIONS(1071), - [aux_sym_class_declaration_token1] = ACTIONS(1071), - [aux_sym_final_modifier_token1] = ACTIONS(1071), - [aux_sym_abstract_modifier_token1] = ACTIONS(1071), - [aux_sym_visibility_modifier_token1] = ACTIONS(1071), - [aux_sym_visibility_modifier_token2] = ACTIONS(1071), - [aux_sym_visibility_modifier_token3] = ACTIONS(1071), - [aux_sym_arrow_function_token1] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(1069), - [aux_sym_cast_type_token1] = ACTIONS(1071), - [aux_sym_echo_statement_token1] = ACTIONS(1071), - [anon_sym_unset] = ACTIONS(1071), - [aux_sym_declare_statement_token1] = ACTIONS(1071), - [aux_sym_declare_statement_token2] = ACTIONS(1071), - [sym_float] = ACTIONS(1071), - [aux_sym_try_statement_token1] = ACTIONS(1071), - [aux_sym_goto_statement_token1] = ACTIONS(1071), - [aux_sym_continue_statement_token1] = ACTIONS(1071), - [aux_sym_break_statement_token1] = ACTIONS(1071), - [sym_integer] = ACTIONS(1071), - [aux_sym_return_statement_token1] = ACTIONS(1071), - [aux_sym_throw_expression_token1] = ACTIONS(1071), - [aux_sym_while_statement_token1] = ACTIONS(1071), - [aux_sym_while_statement_token2] = ACTIONS(1071), - [aux_sym_do_statement_token1] = ACTIONS(1071), - [aux_sym_for_statement_token1] = ACTIONS(1071), - [aux_sym_for_statement_token2] = ACTIONS(1071), - [aux_sym_foreach_statement_token1] = ACTIONS(1071), - [aux_sym_foreach_statement_token2] = ACTIONS(1071), - [aux_sym_if_statement_token1] = ACTIONS(1071), - [aux_sym_if_statement_token2] = ACTIONS(1071), - [aux_sym_else_if_clause_token1] = ACTIONS(1071), - [aux_sym_else_clause_token1] = ACTIONS(1071), - [aux_sym_match_expression_token1] = ACTIONS(1071), - [aux_sym_match_default_expression_token1] = ACTIONS(1071), - [aux_sym_switch_statement_token1] = ACTIONS(1071), - [aux_sym_switch_block_token1] = ACTIONS(1071), - [anon_sym_AT] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_BANG] = ACTIONS(1069), - [aux_sym_clone_expression_token1] = ACTIONS(1071), - [aux_sym_print_intrinsic_token1] = ACTIONS(1071), - [aux_sym_object_creation_expression_token1] = ACTIONS(1071), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [sym_shell_command_expression] = ACTIONS(1069), - [aux_sym__list_destructing_token1] = ACTIONS(1071), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_self] = ACTIONS(1071), - [anon_sym_parent] = ACTIONS(1071), - [anon_sym_POUND_LBRACK] = ACTIONS(1069), - [aux_sym_encapsed_string_token1] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1069), - [anon_sym_SQUOTE] = ACTIONS(1069), - [aux_sym_string_token1] = ACTIONS(1069), - [sym_boolean] = ACTIONS(1071), - [sym_null] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1069), - [aux_sym_yield_expression_token1] = ACTIONS(1071), - [aux_sym_include_expression_token1] = ACTIONS(1071), - [aux_sym_include_once_expression_token1] = ACTIONS(1071), - [aux_sym_require_expression_token1] = ACTIONS(1071), - [aux_sym_require_once_expression_token1] = ACTIONS(1071), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1069), - }, - [482] = { - [sym_text_interpolation] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1073), - [sym_name] = ACTIONS(1075), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1073), - [aux_sym_function_static_declaration_token1] = ACTIONS(1075), - [aux_sym_global_declaration_token1] = ACTIONS(1075), - [aux_sym_namespace_definition_token1] = ACTIONS(1075), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1075), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1075), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1075), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_RBRACE] = ACTIONS(1073), - [aux_sym_trait_declaration_token1] = ACTIONS(1075), - [aux_sym_interface_declaration_token1] = ACTIONS(1075), - [aux_sym_enum_declaration_token1] = ACTIONS(1075), - [aux_sym_enum_case_token1] = ACTIONS(1075), - [aux_sym_class_declaration_token1] = ACTIONS(1075), - [aux_sym_final_modifier_token1] = ACTIONS(1075), - [aux_sym_abstract_modifier_token1] = ACTIONS(1075), - [aux_sym_visibility_modifier_token1] = ACTIONS(1075), - [aux_sym_visibility_modifier_token2] = ACTIONS(1075), - [aux_sym_visibility_modifier_token3] = ACTIONS(1075), - [aux_sym_arrow_function_token1] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1073), - [aux_sym_cast_type_token1] = ACTIONS(1075), - [aux_sym_echo_statement_token1] = ACTIONS(1075), - [anon_sym_unset] = ACTIONS(1075), - [aux_sym_declare_statement_token1] = ACTIONS(1075), - [aux_sym_declare_statement_token2] = ACTIONS(1075), - [sym_float] = ACTIONS(1075), - [aux_sym_try_statement_token1] = ACTIONS(1075), - [aux_sym_goto_statement_token1] = ACTIONS(1075), - [aux_sym_continue_statement_token1] = ACTIONS(1075), - [aux_sym_break_statement_token1] = ACTIONS(1075), - [sym_integer] = ACTIONS(1075), - [aux_sym_return_statement_token1] = ACTIONS(1075), - [aux_sym_throw_expression_token1] = ACTIONS(1075), - [aux_sym_while_statement_token1] = ACTIONS(1075), - [aux_sym_while_statement_token2] = ACTIONS(1075), - [aux_sym_do_statement_token1] = ACTIONS(1075), - [aux_sym_for_statement_token1] = ACTIONS(1075), - [aux_sym_for_statement_token2] = ACTIONS(1075), - [aux_sym_foreach_statement_token1] = ACTIONS(1075), - [aux_sym_foreach_statement_token2] = ACTIONS(1075), - [aux_sym_if_statement_token1] = ACTIONS(1075), - [aux_sym_if_statement_token2] = ACTIONS(1075), - [aux_sym_else_if_clause_token1] = ACTIONS(1075), - [aux_sym_else_clause_token1] = ACTIONS(1075), - [aux_sym_match_expression_token1] = ACTIONS(1075), - [aux_sym_match_default_expression_token1] = ACTIONS(1075), - [aux_sym_switch_statement_token1] = ACTIONS(1075), - [aux_sym_switch_block_token1] = ACTIONS(1075), - [anon_sym_AT] = ACTIONS(1073), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1073), - [aux_sym_clone_expression_token1] = ACTIONS(1075), - [aux_sym_print_intrinsic_token1] = ACTIONS(1075), - [aux_sym_object_creation_expression_token1] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1073), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [sym_shell_command_expression] = ACTIONS(1073), - [aux_sym__list_destructing_token1] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_self] = ACTIONS(1075), - [anon_sym_parent] = ACTIONS(1075), - [anon_sym_POUND_LBRACK] = ACTIONS(1073), - [aux_sym_encapsed_string_token1] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1073), - [anon_sym_SQUOTE] = ACTIONS(1073), - [aux_sym_string_token1] = ACTIONS(1073), - [sym_boolean] = ACTIONS(1075), - [sym_null] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1073), - [aux_sym_yield_expression_token1] = ACTIONS(1075), - [aux_sym_include_expression_token1] = ACTIONS(1075), - [aux_sym_include_once_expression_token1] = ACTIONS(1075), - [aux_sym_require_expression_token1] = ACTIONS(1075), - [aux_sym_require_once_expression_token1] = ACTIONS(1075), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1073), - }, - [483] = { - [sym_text_interpolation] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1077), - [sym_name] = ACTIONS(1079), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1077), - [aux_sym_function_static_declaration_token1] = ACTIONS(1079), - [aux_sym_global_declaration_token1] = ACTIONS(1079), - [aux_sym_namespace_definition_token1] = ACTIONS(1079), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1079), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1079), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1079), - [anon_sym_BSLASH] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [aux_sym_trait_declaration_token1] = ACTIONS(1079), - [aux_sym_interface_declaration_token1] = ACTIONS(1079), - [aux_sym_enum_declaration_token1] = ACTIONS(1079), - [aux_sym_enum_case_token1] = ACTIONS(1079), - [aux_sym_class_declaration_token1] = ACTIONS(1079), - [aux_sym_final_modifier_token1] = ACTIONS(1079), - [aux_sym_abstract_modifier_token1] = ACTIONS(1079), - [aux_sym_visibility_modifier_token1] = ACTIONS(1079), - [aux_sym_visibility_modifier_token2] = ACTIONS(1079), - [aux_sym_visibility_modifier_token3] = ACTIONS(1079), - [aux_sym_arrow_function_token1] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1077), - [aux_sym_cast_type_token1] = ACTIONS(1079), - [aux_sym_echo_statement_token1] = ACTIONS(1079), - [anon_sym_unset] = ACTIONS(1079), - [aux_sym_declare_statement_token1] = ACTIONS(1079), - [aux_sym_declare_statement_token2] = ACTIONS(1079), - [sym_float] = ACTIONS(1079), - [aux_sym_try_statement_token1] = ACTIONS(1079), - [aux_sym_goto_statement_token1] = ACTIONS(1079), - [aux_sym_continue_statement_token1] = ACTIONS(1079), - [aux_sym_break_statement_token1] = ACTIONS(1079), - [sym_integer] = ACTIONS(1079), - [aux_sym_return_statement_token1] = ACTIONS(1079), - [aux_sym_throw_expression_token1] = ACTIONS(1079), - [aux_sym_while_statement_token1] = ACTIONS(1079), - [aux_sym_while_statement_token2] = ACTIONS(1079), - [aux_sym_do_statement_token1] = ACTIONS(1079), - [aux_sym_for_statement_token1] = ACTIONS(1079), - [aux_sym_for_statement_token2] = ACTIONS(1079), - [aux_sym_foreach_statement_token1] = ACTIONS(1079), - [aux_sym_foreach_statement_token2] = ACTIONS(1079), - [aux_sym_if_statement_token1] = ACTIONS(1079), - [aux_sym_if_statement_token2] = ACTIONS(1079), - [aux_sym_else_if_clause_token1] = ACTIONS(1079), - [aux_sym_else_clause_token1] = ACTIONS(1079), - [aux_sym_match_expression_token1] = ACTIONS(1079), - [aux_sym_match_default_expression_token1] = ACTIONS(1079), - [aux_sym_switch_statement_token1] = ACTIONS(1079), - [aux_sym_switch_block_token1] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [aux_sym_clone_expression_token1] = ACTIONS(1079), - [aux_sym_print_intrinsic_token1] = ACTIONS(1079), - [aux_sym_object_creation_expression_token1] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [sym_shell_command_expression] = ACTIONS(1077), - [aux_sym__list_destructing_token1] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1077), - [anon_sym_self] = ACTIONS(1079), - [anon_sym_parent] = ACTIONS(1079), - [anon_sym_POUND_LBRACK] = ACTIONS(1077), - [aux_sym_encapsed_string_token1] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1077), - [aux_sym_string_token1] = ACTIONS(1077), - [sym_boolean] = ACTIONS(1079), - [sym_null] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1077), - [aux_sym_yield_expression_token1] = ACTIONS(1079), - [aux_sym_include_expression_token1] = ACTIONS(1079), - [aux_sym_include_once_expression_token1] = ACTIONS(1079), - [aux_sym_require_expression_token1] = ACTIONS(1079), - [aux_sym_require_once_expression_token1] = ACTIONS(1079), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1077), - }, - [484] = { - [sym_text_interpolation] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(1081), - [sym_name] = ACTIONS(1083), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1081), - [aux_sym_function_static_declaration_token1] = ACTIONS(1083), - [aux_sym_global_declaration_token1] = ACTIONS(1083), - [aux_sym_namespace_definition_token1] = ACTIONS(1083), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1083), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1083), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1083), - [anon_sym_BSLASH] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [aux_sym_trait_declaration_token1] = ACTIONS(1083), - [aux_sym_interface_declaration_token1] = ACTIONS(1083), - [aux_sym_enum_declaration_token1] = ACTIONS(1083), - [aux_sym_enum_case_token1] = ACTIONS(1083), - [aux_sym_class_declaration_token1] = ACTIONS(1083), - [aux_sym_final_modifier_token1] = ACTIONS(1083), - [aux_sym_abstract_modifier_token1] = ACTIONS(1083), - [aux_sym_visibility_modifier_token1] = ACTIONS(1083), - [aux_sym_visibility_modifier_token2] = ACTIONS(1083), - [aux_sym_visibility_modifier_token3] = ACTIONS(1083), - [aux_sym_arrow_function_token1] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1081), - [aux_sym_cast_type_token1] = ACTIONS(1083), - [aux_sym_echo_statement_token1] = ACTIONS(1083), - [anon_sym_unset] = ACTIONS(1083), - [aux_sym_declare_statement_token1] = ACTIONS(1083), - [aux_sym_declare_statement_token2] = ACTIONS(1083), - [sym_float] = ACTIONS(1083), - [aux_sym_try_statement_token1] = ACTIONS(1083), - [aux_sym_goto_statement_token1] = ACTIONS(1083), - [aux_sym_continue_statement_token1] = ACTIONS(1083), - [aux_sym_break_statement_token1] = ACTIONS(1083), - [sym_integer] = ACTIONS(1083), - [aux_sym_return_statement_token1] = ACTIONS(1083), - [aux_sym_throw_expression_token1] = ACTIONS(1083), - [aux_sym_while_statement_token1] = ACTIONS(1083), - [aux_sym_while_statement_token2] = ACTIONS(1083), - [aux_sym_do_statement_token1] = ACTIONS(1083), - [aux_sym_for_statement_token1] = ACTIONS(1083), - [aux_sym_for_statement_token2] = ACTIONS(1083), - [aux_sym_foreach_statement_token1] = ACTIONS(1083), - [aux_sym_foreach_statement_token2] = ACTIONS(1083), - [aux_sym_if_statement_token1] = ACTIONS(1083), - [aux_sym_if_statement_token2] = ACTIONS(1083), - [aux_sym_else_if_clause_token1] = ACTIONS(1083), - [aux_sym_else_clause_token1] = ACTIONS(1083), - [aux_sym_match_expression_token1] = ACTIONS(1083), - [aux_sym_match_default_expression_token1] = ACTIONS(1083), - [aux_sym_switch_statement_token1] = ACTIONS(1083), - [aux_sym_switch_block_token1] = ACTIONS(1083), - [anon_sym_AT] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [aux_sym_clone_expression_token1] = ACTIONS(1083), - [aux_sym_print_intrinsic_token1] = ACTIONS(1083), - [aux_sym_object_creation_expression_token1] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [sym_shell_command_expression] = ACTIONS(1081), - [aux_sym__list_destructing_token1] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_self] = ACTIONS(1083), - [anon_sym_parent] = ACTIONS(1083), - [anon_sym_POUND_LBRACK] = ACTIONS(1081), - [aux_sym_encapsed_string_token1] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(1081), - [aux_sym_string_token1] = ACTIONS(1081), - [sym_boolean] = ACTIONS(1083), - [sym_null] = ACTIONS(1083), - [anon_sym_DOLLAR] = ACTIONS(1081), - [aux_sym_yield_expression_token1] = ACTIONS(1083), - [aux_sym_include_expression_token1] = ACTIONS(1083), - [aux_sym_include_once_expression_token1] = ACTIONS(1083), - [aux_sym_require_expression_token1] = ACTIONS(1083), - [aux_sym_require_once_expression_token1] = ACTIONS(1083), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1081), - }, - [485] = { - [sym_text_interpolation] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1085), - [aux_sym_function_static_declaration_token1] = ACTIONS(1087), - [aux_sym_global_declaration_token1] = ACTIONS(1087), - [aux_sym_namespace_definition_token1] = ACTIONS(1087), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1087), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1087), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1087), - [anon_sym_BSLASH] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_RBRACE] = ACTIONS(1085), - [aux_sym_trait_declaration_token1] = ACTIONS(1087), - [aux_sym_interface_declaration_token1] = ACTIONS(1087), - [aux_sym_enum_declaration_token1] = ACTIONS(1087), - [aux_sym_enum_case_token1] = ACTIONS(1087), - [aux_sym_class_declaration_token1] = ACTIONS(1087), - [aux_sym_final_modifier_token1] = ACTIONS(1087), - [aux_sym_abstract_modifier_token1] = ACTIONS(1087), - [aux_sym_visibility_modifier_token1] = ACTIONS(1087), - [aux_sym_visibility_modifier_token2] = ACTIONS(1087), - [aux_sym_visibility_modifier_token3] = ACTIONS(1087), - [aux_sym_arrow_function_token1] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1085), - [aux_sym_cast_type_token1] = ACTIONS(1087), - [aux_sym_echo_statement_token1] = ACTIONS(1087), - [anon_sym_unset] = ACTIONS(1087), - [aux_sym_declare_statement_token1] = ACTIONS(1087), - [aux_sym_declare_statement_token2] = ACTIONS(1087), - [sym_float] = ACTIONS(1087), - [aux_sym_try_statement_token1] = ACTIONS(1087), - [aux_sym_goto_statement_token1] = ACTIONS(1087), - [aux_sym_continue_statement_token1] = ACTIONS(1087), - [aux_sym_break_statement_token1] = ACTIONS(1087), - [sym_integer] = ACTIONS(1087), - [aux_sym_return_statement_token1] = ACTIONS(1087), - [aux_sym_throw_expression_token1] = ACTIONS(1087), - [aux_sym_while_statement_token1] = ACTIONS(1087), - [aux_sym_while_statement_token2] = ACTIONS(1087), - [aux_sym_do_statement_token1] = ACTIONS(1087), - [aux_sym_for_statement_token1] = ACTIONS(1087), - [aux_sym_for_statement_token2] = ACTIONS(1087), - [aux_sym_foreach_statement_token1] = ACTIONS(1087), - [aux_sym_foreach_statement_token2] = ACTIONS(1087), - [aux_sym_if_statement_token1] = ACTIONS(1087), - [aux_sym_if_statement_token2] = ACTIONS(1087), - [aux_sym_else_if_clause_token1] = ACTIONS(1087), - [aux_sym_else_clause_token1] = ACTIONS(1087), - [aux_sym_match_expression_token1] = ACTIONS(1087), - [aux_sym_match_default_expression_token1] = ACTIONS(1087), - [aux_sym_switch_statement_token1] = ACTIONS(1087), - [aux_sym_switch_block_token1] = ACTIONS(1087), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1085), - [aux_sym_clone_expression_token1] = ACTIONS(1087), - [aux_sym_print_intrinsic_token1] = ACTIONS(1087), - [aux_sym_object_creation_expression_token1] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [sym_shell_command_expression] = ACTIONS(1085), - [aux_sym__list_destructing_token1] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_self] = ACTIONS(1087), - [anon_sym_parent] = ACTIONS(1087), - [anon_sym_POUND_LBRACK] = ACTIONS(1085), - [aux_sym_encapsed_string_token1] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [aux_sym_string_token1] = ACTIONS(1085), - [sym_boolean] = ACTIONS(1087), - [sym_null] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(1085), - [aux_sym_yield_expression_token1] = ACTIONS(1087), - [aux_sym_include_expression_token1] = ACTIONS(1087), - [aux_sym_include_once_expression_token1] = ACTIONS(1087), - [aux_sym_require_expression_token1] = ACTIONS(1087), - [aux_sym_require_once_expression_token1] = ACTIONS(1087), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1085), - }, - [486] = { - [sym_text_interpolation] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(1089), - [sym_name] = ACTIONS(1091), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1089), - [aux_sym_function_static_declaration_token1] = ACTIONS(1091), - [aux_sym_global_declaration_token1] = ACTIONS(1091), - [aux_sym_namespace_definition_token1] = ACTIONS(1091), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1091), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1091), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1091), - [anon_sym_BSLASH] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1089), - [aux_sym_trait_declaration_token1] = ACTIONS(1091), - [aux_sym_interface_declaration_token1] = ACTIONS(1091), - [aux_sym_enum_declaration_token1] = ACTIONS(1091), - [aux_sym_enum_case_token1] = ACTIONS(1091), - [aux_sym_class_declaration_token1] = ACTIONS(1091), - [aux_sym_final_modifier_token1] = ACTIONS(1091), - [aux_sym_abstract_modifier_token1] = ACTIONS(1091), - [aux_sym_visibility_modifier_token1] = ACTIONS(1091), - [aux_sym_visibility_modifier_token2] = ACTIONS(1091), - [aux_sym_visibility_modifier_token3] = ACTIONS(1091), - [aux_sym_arrow_function_token1] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1089), - [aux_sym_cast_type_token1] = ACTIONS(1091), - [aux_sym_echo_statement_token1] = ACTIONS(1091), - [anon_sym_unset] = ACTIONS(1091), - [aux_sym_declare_statement_token1] = ACTIONS(1091), - [aux_sym_declare_statement_token2] = ACTIONS(1091), - [sym_float] = ACTIONS(1091), - [aux_sym_try_statement_token1] = ACTIONS(1091), - [aux_sym_goto_statement_token1] = ACTIONS(1091), - [aux_sym_continue_statement_token1] = ACTIONS(1091), - [aux_sym_break_statement_token1] = ACTIONS(1091), - [sym_integer] = ACTIONS(1091), - [aux_sym_return_statement_token1] = ACTIONS(1091), - [aux_sym_throw_expression_token1] = ACTIONS(1091), - [aux_sym_while_statement_token1] = ACTIONS(1091), - [aux_sym_while_statement_token2] = ACTIONS(1091), - [aux_sym_do_statement_token1] = ACTIONS(1091), - [aux_sym_for_statement_token1] = ACTIONS(1091), - [aux_sym_for_statement_token2] = ACTIONS(1091), - [aux_sym_foreach_statement_token1] = ACTIONS(1091), - [aux_sym_foreach_statement_token2] = ACTIONS(1091), - [aux_sym_if_statement_token1] = ACTIONS(1091), - [aux_sym_if_statement_token2] = ACTIONS(1091), - [aux_sym_else_if_clause_token1] = ACTIONS(1091), - [aux_sym_else_clause_token1] = ACTIONS(1091), - [aux_sym_match_expression_token1] = ACTIONS(1091), - [aux_sym_match_default_expression_token1] = ACTIONS(1091), - [aux_sym_switch_statement_token1] = ACTIONS(1091), - [aux_sym_switch_block_token1] = ACTIONS(1091), - [anon_sym_AT] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1091), - [anon_sym_DASH] = ACTIONS(1091), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_BANG] = ACTIONS(1089), - [aux_sym_clone_expression_token1] = ACTIONS(1091), - [aux_sym_print_intrinsic_token1] = ACTIONS(1091), - [aux_sym_object_creation_expression_token1] = ACTIONS(1091), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_shell_command_expression] = ACTIONS(1089), - [aux_sym__list_destructing_token1] = ACTIONS(1091), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_self] = ACTIONS(1091), - [anon_sym_parent] = ACTIONS(1091), - [anon_sym_POUND_LBRACK] = ACTIONS(1089), - [aux_sym_encapsed_string_token1] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1089), - [aux_sym_string_token1] = ACTIONS(1089), - [sym_boolean] = ACTIONS(1091), - [sym_null] = ACTIONS(1091), - [anon_sym_DOLLAR] = ACTIONS(1089), - [aux_sym_yield_expression_token1] = ACTIONS(1091), - [aux_sym_include_expression_token1] = ACTIONS(1091), - [aux_sym_include_once_expression_token1] = ACTIONS(1091), - [aux_sym_require_expression_token1] = ACTIONS(1091), - [aux_sym_require_once_expression_token1] = ACTIONS(1091), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1089), - }, - [487] = { - [sym_text_interpolation] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_name] = ACTIONS(1095), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1093), - [aux_sym_function_static_declaration_token1] = ACTIONS(1095), - [aux_sym_global_declaration_token1] = ACTIONS(1095), - [aux_sym_namespace_definition_token1] = ACTIONS(1095), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1095), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1095), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1095), - [anon_sym_BSLASH] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [aux_sym_trait_declaration_token1] = ACTIONS(1095), - [aux_sym_interface_declaration_token1] = ACTIONS(1095), - [aux_sym_enum_declaration_token1] = ACTIONS(1095), - [aux_sym_enum_case_token1] = ACTIONS(1095), - [aux_sym_class_declaration_token1] = ACTIONS(1095), - [aux_sym_final_modifier_token1] = ACTIONS(1095), - [aux_sym_abstract_modifier_token1] = ACTIONS(1095), - [aux_sym_visibility_modifier_token1] = ACTIONS(1095), - [aux_sym_visibility_modifier_token2] = ACTIONS(1095), - [aux_sym_visibility_modifier_token3] = ACTIONS(1095), - [aux_sym_arrow_function_token1] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1093), - [aux_sym_cast_type_token1] = ACTIONS(1095), - [aux_sym_echo_statement_token1] = ACTIONS(1095), - [anon_sym_unset] = ACTIONS(1095), - [aux_sym_declare_statement_token1] = ACTIONS(1095), - [aux_sym_declare_statement_token2] = ACTIONS(1095), - [sym_float] = ACTIONS(1095), - [aux_sym_try_statement_token1] = ACTIONS(1095), - [aux_sym_goto_statement_token1] = ACTIONS(1095), - [aux_sym_continue_statement_token1] = ACTIONS(1095), - [aux_sym_break_statement_token1] = ACTIONS(1095), - [sym_integer] = ACTIONS(1095), - [aux_sym_return_statement_token1] = ACTIONS(1095), - [aux_sym_throw_expression_token1] = ACTIONS(1095), - [aux_sym_while_statement_token1] = ACTIONS(1095), - [aux_sym_while_statement_token2] = ACTIONS(1095), - [aux_sym_do_statement_token1] = ACTIONS(1095), - [aux_sym_for_statement_token1] = ACTIONS(1095), - [aux_sym_for_statement_token2] = ACTIONS(1095), - [aux_sym_foreach_statement_token1] = ACTIONS(1095), - [aux_sym_foreach_statement_token2] = ACTIONS(1095), - [aux_sym_if_statement_token1] = ACTIONS(1095), - [aux_sym_if_statement_token2] = ACTIONS(1095), - [aux_sym_else_if_clause_token1] = ACTIONS(1095), - [aux_sym_else_clause_token1] = ACTIONS(1095), - [aux_sym_match_expression_token1] = ACTIONS(1095), - [aux_sym_match_default_expression_token1] = ACTIONS(1095), - [aux_sym_switch_statement_token1] = ACTIONS(1095), - [aux_sym_switch_block_token1] = ACTIONS(1095), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1093), - [aux_sym_clone_expression_token1] = ACTIONS(1095), - [aux_sym_print_intrinsic_token1] = ACTIONS(1095), - [aux_sym_object_creation_expression_token1] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1093), - [anon_sym_DASH_DASH] = ACTIONS(1093), - [sym_shell_command_expression] = ACTIONS(1093), - [aux_sym__list_destructing_token1] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_self] = ACTIONS(1095), - [anon_sym_parent] = ACTIONS(1095), - [anon_sym_POUND_LBRACK] = ACTIONS(1093), - [aux_sym_encapsed_string_token1] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [aux_sym_string_token1] = ACTIONS(1093), - [sym_boolean] = ACTIONS(1095), - [sym_null] = ACTIONS(1095), - [anon_sym_DOLLAR] = ACTIONS(1093), - [aux_sym_yield_expression_token1] = ACTIONS(1095), - [aux_sym_include_expression_token1] = ACTIONS(1095), - [aux_sym_include_once_expression_token1] = ACTIONS(1095), - [aux_sym_require_expression_token1] = ACTIONS(1095), - [aux_sym_require_once_expression_token1] = ACTIONS(1095), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1093), - }, - [488] = { - [sym_text_interpolation] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_name] = ACTIONS(1099), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1097), - [aux_sym_function_static_declaration_token1] = ACTIONS(1099), - [aux_sym_global_declaration_token1] = ACTIONS(1099), - [aux_sym_namespace_definition_token1] = ACTIONS(1099), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1099), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1099), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1099), - [anon_sym_BSLASH] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [aux_sym_trait_declaration_token1] = ACTIONS(1099), - [aux_sym_interface_declaration_token1] = ACTIONS(1099), - [aux_sym_enum_declaration_token1] = ACTIONS(1099), - [aux_sym_enum_case_token1] = ACTIONS(1099), - [aux_sym_class_declaration_token1] = ACTIONS(1099), - [aux_sym_final_modifier_token1] = ACTIONS(1099), - [aux_sym_abstract_modifier_token1] = ACTIONS(1099), - [aux_sym_visibility_modifier_token1] = ACTIONS(1099), - [aux_sym_visibility_modifier_token2] = ACTIONS(1099), - [aux_sym_visibility_modifier_token3] = ACTIONS(1099), - [aux_sym_arrow_function_token1] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1097), - [aux_sym_cast_type_token1] = ACTIONS(1099), - [aux_sym_echo_statement_token1] = ACTIONS(1099), - [anon_sym_unset] = ACTIONS(1099), - [aux_sym_declare_statement_token1] = ACTIONS(1099), - [aux_sym_declare_statement_token2] = ACTIONS(1099), - [sym_float] = ACTIONS(1099), - [aux_sym_try_statement_token1] = ACTIONS(1099), - [aux_sym_goto_statement_token1] = ACTIONS(1099), - [aux_sym_continue_statement_token1] = ACTIONS(1099), - [aux_sym_break_statement_token1] = ACTIONS(1099), - [sym_integer] = ACTIONS(1099), - [aux_sym_return_statement_token1] = ACTIONS(1099), - [aux_sym_throw_expression_token1] = ACTIONS(1099), - [aux_sym_while_statement_token1] = ACTIONS(1099), - [aux_sym_while_statement_token2] = ACTIONS(1099), - [aux_sym_do_statement_token1] = ACTIONS(1099), - [aux_sym_for_statement_token1] = ACTIONS(1099), - [aux_sym_for_statement_token2] = ACTIONS(1099), - [aux_sym_foreach_statement_token1] = ACTIONS(1099), - [aux_sym_foreach_statement_token2] = ACTIONS(1099), - [aux_sym_if_statement_token1] = ACTIONS(1099), - [aux_sym_if_statement_token2] = ACTIONS(1099), - [aux_sym_else_if_clause_token1] = ACTIONS(1099), - [aux_sym_else_clause_token1] = ACTIONS(1099), - [aux_sym_match_expression_token1] = ACTIONS(1099), - [aux_sym_match_default_expression_token1] = ACTIONS(1099), - [aux_sym_switch_statement_token1] = ACTIONS(1099), - [aux_sym_switch_block_token1] = ACTIONS(1099), - [anon_sym_AT] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(1097), - [aux_sym_clone_expression_token1] = ACTIONS(1099), - [aux_sym_print_intrinsic_token1] = ACTIONS(1099), - [aux_sym_object_creation_expression_token1] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1097), - [anon_sym_DASH_DASH] = ACTIONS(1097), - [sym_shell_command_expression] = ACTIONS(1097), - [aux_sym__list_destructing_token1] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_self] = ACTIONS(1099), - [anon_sym_parent] = ACTIONS(1099), - [anon_sym_POUND_LBRACK] = ACTIONS(1097), - [aux_sym_encapsed_string_token1] = ACTIONS(1097), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_SQUOTE] = ACTIONS(1097), - [aux_sym_string_token1] = ACTIONS(1097), - [sym_boolean] = ACTIONS(1099), - [sym_null] = ACTIONS(1099), - [anon_sym_DOLLAR] = ACTIONS(1097), - [aux_sym_yield_expression_token1] = ACTIONS(1099), - [aux_sym_include_expression_token1] = ACTIONS(1099), - [aux_sym_include_once_expression_token1] = ACTIONS(1099), - [aux_sym_require_expression_token1] = ACTIONS(1099), - [aux_sym_require_once_expression_token1] = ACTIONS(1099), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1097), - }, - [489] = { - [sym_text_interpolation] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_name] = ACTIONS(1103), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1101), - [aux_sym_function_static_declaration_token1] = ACTIONS(1103), - [aux_sym_global_declaration_token1] = ACTIONS(1103), - [aux_sym_namespace_definition_token1] = ACTIONS(1103), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1103), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1103), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1103), - [anon_sym_BSLASH] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_RBRACE] = ACTIONS(1101), - [aux_sym_trait_declaration_token1] = ACTIONS(1103), - [aux_sym_interface_declaration_token1] = ACTIONS(1103), - [aux_sym_enum_declaration_token1] = ACTIONS(1103), - [aux_sym_enum_case_token1] = ACTIONS(1103), - [aux_sym_class_declaration_token1] = ACTIONS(1103), - [aux_sym_final_modifier_token1] = ACTIONS(1103), - [aux_sym_abstract_modifier_token1] = ACTIONS(1103), - [aux_sym_visibility_modifier_token1] = ACTIONS(1103), - [aux_sym_visibility_modifier_token2] = ACTIONS(1103), - [aux_sym_visibility_modifier_token3] = ACTIONS(1103), - [aux_sym_arrow_function_token1] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1101), - [aux_sym_cast_type_token1] = ACTIONS(1103), - [aux_sym_echo_statement_token1] = ACTIONS(1103), - [anon_sym_unset] = ACTIONS(1103), - [aux_sym_declare_statement_token1] = ACTIONS(1103), - [aux_sym_declare_statement_token2] = ACTIONS(1103), - [sym_float] = ACTIONS(1103), - [aux_sym_try_statement_token1] = ACTIONS(1103), - [aux_sym_goto_statement_token1] = ACTIONS(1103), - [aux_sym_continue_statement_token1] = ACTIONS(1103), - [aux_sym_break_statement_token1] = ACTIONS(1103), - [sym_integer] = ACTIONS(1103), - [aux_sym_return_statement_token1] = ACTIONS(1103), - [aux_sym_throw_expression_token1] = ACTIONS(1103), - [aux_sym_while_statement_token1] = ACTIONS(1103), - [aux_sym_while_statement_token2] = ACTIONS(1103), - [aux_sym_do_statement_token1] = ACTIONS(1103), - [aux_sym_for_statement_token1] = ACTIONS(1103), - [aux_sym_for_statement_token2] = ACTIONS(1103), - [aux_sym_foreach_statement_token1] = ACTIONS(1103), - [aux_sym_foreach_statement_token2] = ACTIONS(1103), - [aux_sym_if_statement_token1] = ACTIONS(1103), - [aux_sym_if_statement_token2] = ACTIONS(1103), - [aux_sym_else_if_clause_token1] = ACTIONS(1103), - [aux_sym_else_clause_token1] = ACTIONS(1103), - [aux_sym_match_expression_token1] = ACTIONS(1103), - [aux_sym_match_default_expression_token1] = ACTIONS(1103), - [aux_sym_switch_statement_token1] = ACTIONS(1103), - [aux_sym_switch_block_token1] = ACTIONS(1103), - [anon_sym_AT] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1101), - [aux_sym_clone_expression_token1] = ACTIONS(1103), - [aux_sym_print_intrinsic_token1] = ACTIONS(1103), - [aux_sym_object_creation_expression_token1] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1101), - [anon_sym_DASH_DASH] = ACTIONS(1101), - [sym_shell_command_expression] = ACTIONS(1101), - [aux_sym__list_destructing_token1] = ACTIONS(1103), - [anon_sym_LBRACK] = ACTIONS(1101), - [anon_sym_self] = ACTIONS(1103), - [anon_sym_parent] = ACTIONS(1103), - [anon_sym_POUND_LBRACK] = ACTIONS(1101), - [aux_sym_encapsed_string_token1] = ACTIONS(1101), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1101), - [aux_sym_string_token1] = ACTIONS(1101), - [sym_boolean] = ACTIONS(1103), - [sym_null] = ACTIONS(1103), - [anon_sym_DOLLAR] = ACTIONS(1101), - [aux_sym_yield_expression_token1] = ACTIONS(1103), - [aux_sym_include_expression_token1] = ACTIONS(1103), - [aux_sym_include_once_expression_token1] = ACTIONS(1103), - [aux_sym_require_expression_token1] = ACTIONS(1103), - [aux_sym_require_once_expression_token1] = ACTIONS(1103), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1101), - }, - [490] = { - [sym_text_interpolation] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_name] = ACTIONS(1107), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1105), - [aux_sym_function_static_declaration_token1] = ACTIONS(1107), - [aux_sym_global_declaration_token1] = ACTIONS(1107), - [aux_sym_namespace_definition_token1] = ACTIONS(1107), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1107), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1107), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1107), - [anon_sym_BSLASH] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [aux_sym_trait_declaration_token1] = ACTIONS(1107), - [aux_sym_interface_declaration_token1] = ACTIONS(1107), - [aux_sym_enum_declaration_token1] = ACTIONS(1107), - [aux_sym_enum_case_token1] = ACTIONS(1107), - [aux_sym_class_declaration_token1] = ACTIONS(1107), - [aux_sym_final_modifier_token1] = ACTIONS(1107), - [aux_sym_abstract_modifier_token1] = ACTIONS(1107), - [aux_sym_visibility_modifier_token1] = ACTIONS(1107), - [aux_sym_visibility_modifier_token2] = ACTIONS(1107), - [aux_sym_visibility_modifier_token3] = ACTIONS(1107), - [aux_sym_arrow_function_token1] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(1105), - [aux_sym_cast_type_token1] = ACTIONS(1107), - [aux_sym_echo_statement_token1] = ACTIONS(1107), - [anon_sym_unset] = ACTIONS(1107), - [aux_sym_declare_statement_token1] = ACTIONS(1107), - [aux_sym_declare_statement_token2] = ACTIONS(1107), - [sym_float] = ACTIONS(1107), - [aux_sym_try_statement_token1] = ACTIONS(1107), - [aux_sym_goto_statement_token1] = ACTIONS(1107), - [aux_sym_continue_statement_token1] = ACTIONS(1107), - [aux_sym_break_statement_token1] = ACTIONS(1107), - [sym_integer] = ACTIONS(1107), - [aux_sym_return_statement_token1] = ACTIONS(1107), - [aux_sym_throw_expression_token1] = ACTIONS(1107), - [aux_sym_while_statement_token1] = ACTIONS(1107), - [aux_sym_while_statement_token2] = ACTIONS(1107), - [aux_sym_do_statement_token1] = ACTIONS(1107), - [aux_sym_for_statement_token1] = ACTIONS(1107), - [aux_sym_for_statement_token2] = ACTIONS(1107), - [aux_sym_foreach_statement_token1] = ACTIONS(1107), - [aux_sym_foreach_statement_token2] = ACTIONS(1107), - [aux_sym_if_statement_token1] = ACTIONS(1107), - [aux_sym_if_statement_token2] = ACTIONS(1107), - [aux_sym_else_if_clause_token1] = ACTIONS(1107), - [aux_sym_else_clause_token1] = ACTIONS(1107), - [aux_sym_match_expression_token1] = ACTIONS(1107), - [aux_sym_match_default_expression_token1] = ACTIONS(1107), - [aux_sym_switch_statement_token1] = ACTIONS(1107), - [aux_sym_switch_block_token1] = ACTIONS(1107), - [anon_sym_AT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [aux_sym_clone_expression_token1] = ACTIONS(1107), - [aux_sym_print_intrinsic_token1] = ACTIONS(1107), - [aux_sym_object_creation_expression_token1] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1105), - [anon_sym_DASH_DASH] = ACTIONS(1105), - [sym_shell_command_expression] = ACTIONS(1105), - [aux_sym__list_destructing_token1] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_self] = ACTIONS(1107), - [anon_sym_parent] = ACTIONS(1107), - [anon_sym_POUND_LBRACK] = ACTIONS(1105), - [aux_sym_encapsed_string_token1] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(1105), - [aux_sym_string_token1] = ACTIONS(1105), - [sym_boolean] = ACTIONS(1107), - [sym_null] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1105), - [aux_sym_yield_expression_token1] = ACTIONS(1107), - [aux_sym_include_expression_token1] = ACTIONS(1107), - [aux_sym_include_once_expression_token1] = ACTIONS(1107), - [aux_sym_require_expression_token1] = ACTIONS(1107), - [aux_sym_require_once_expression_token1] = ACTIONS(1107), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1105), - }, - [491] = { - [sym_text_interpolation] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(1109), - [sym_name] = ACTIONS(1111), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1109), - [aux_sym_function_static_declaration_token1] = ACTIONS(1111), - [aux_sym_global_declaration_token1] = ACTIONS(1111), - [aux_sym_namespace_definition_token1] = ACTIONS(1111), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1111), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1111), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1111), - [anon_sym_BSLASH] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [aux_sym_trait_declaration_token1] = ACTIONS(1111), - [aux_sym_interface_declaration_token1] = ACTIONS(1111), - [aux_sym_enum_declaration_token1] = ACTIONS(1111), - [aux_sym_enum_case_token1] = ACTIONS(1111), - [aux_sym_class_declaration_token1] = ACTIONS(1111), - [aux_sym_final_modifier_token1] = ACTIONS(1111), - [aux_sym_abstract_modifier_token1] = ACTIONS(1111), - [aux_sym_visibility_modifier_token1] = ACTIONS(1111), - [aux_sym_visibility_modifier_token2] = ACTIONS(1111), - [aux_sym_visibility_modifier_token3] = ACTIONS(1111), - [aux_sym_arrow_function_token1] = ACTIONS(1111), - [anon_sym_LPAREN] = ACTIONS(1109), - [aux_sym_cast_type_token1] = ACTIONS(1111), - [aux_sym_echo_statement_token1] = ACTIONS(1111), - [anon_sym_unset] = ACTIONS(1111), - [aux_sym_declare_statement_token1] = ACTIONS(1111), - [aux_sym_declare_statement_token2] = ACTIONS(1111), - [sym_float] = ACTIONS(1111), - [aux_sym_try_statement_token1] = ACTIONS(1111), - [aux_sym_goto_statement_token1] = ACTIONS(1111), - [aux_sym_continue_statement_token1] = ACTIONS(1111), - [aux_sym_break_statement_token1] = ACTIONS(1111), - [sym_integer] = ACTIONS(1111), - [aux_sym_return_statement_token1] = ACTIONS(1111), - [aux_sym_throw_expression_token1] = ACTIONS(1111), - [aux_sym_while_statement_token1] = ACTIONS(1111), - [aux_sym_while_statement_token2] = ACTIONS(1111), - [aux_sym_do_statement_token1] = ACTIONS(1111), - [aux_sym_for_statement_token1] = ACTIONS(1111), - [aux_sym_for_statement_token2] = ACTIONS(1111), - [aux_sym_foreach_statement_token1] = ACTIONS(1111), - [aux_sym_foreach_statement_token2] = ACTIONS(1111), - [aux_sym_if_statement_token1] = ACTIONS(1111), - [aux_sym_if_statement_token2] = ACTIONS(1111), - [aux_sym_else_if_clause_token1] = ACTIONS(1111), - [aux_sym_else_clause_token1] = ACTIONS(1111), - [aux_sym_match_expression_token1] = ACTIONS(1111), - [aux_sym_match_default_expression_token1] = ACTIONS(1111), - [aux_sym_switch_statement_token1] = ACTIONS(1111), - [aux_sym_switch_block_token1] = ACTIONS(1111), - [anon_sym_AT] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1111), - [anon_sym_DASH] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [aux_sym_clone_expression_token1] = ACTIONS(1111), - [aux_sym_print_intrinsic_token1] = ACTIONS(1111), - [aux_sym_object_creation_expression_token1] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_shell_command_expression] = ACTIONS(1109), - [aux_sym__list_destructing_token1] = ACTIONS(1111), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_self] = ACTIONS(1111), - [anon_sym_parent] = ACTIONS(1111), - [anon_sym_POUND_LBRACK] = ACTIONS(1109), - [aux_sym_encapsed_string_token1] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_SQUOTE] = ACTIONS(1109), - [aux_sym_string_token1] = ACTIONS(1109), - [sym_boolean] = ACTIONS(1111), - [sym_null] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1109), - [aux_sym_yield_expression_token1] = ACTIONS(1111), - [aux_sym_include_expression_token1] = ACTIONS(1111), - [aux_sym_include_once_expression_token1] = ACTIONS(1111), - [aux_sym_require_expression_token1] = ACTIONS(1111), - [aux_sym_require_once_expression_token1] = ACTIONS(1111), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1109), - }, - [492] = { - [sym_text_interpolation] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(1113), - [sym_name] = ACTIONS(1115), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1113), - [aux_sym_function_static_declaration_token1] = ACTIONS(1115), - [aux_sym_global_declaration_token1] = ACTIONS(1115), - [aux_sym_namespace_definition_token1] = ACTIONS(1115), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1115), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1115), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1115), - [anon_sym_BSLASH] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [aux_sym_trait_declaration_token1] = ACTIONS(1115), - [aux_sym_interface_declaration_token1] = ACTIONS(1115), - [aux_sym_enum_declaration_token1] = ACTIONS(1115), - [aux_sym_enum_case_token1] = ACTIONS(1115), - [aux_sym_class_declaration_token1] = ACTIONS(1115), - [aux_sym_final_modifier_token1] = ACTIONS(1115), - [aux_sym_abstract_modifier_token1] = ACTIONS(1115), - [aux_sym_visibility_modifier_token1] = ACTIONS(1115), - [aux_sym_visibility_modifier_token2] = ACTIONS(1115), - [aux_sym_visibility_modifier_token3] = ACTIONS(1115), - [aux_sym_arrow_function_token1] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(1113), - [aux_sym_cast_type_token1] = ACTIONS(1115), - [aux_sym_echo_statement_token1] = ACTIONS(1115), - [anon_sym_unset] = ACTIONS(1115), - [aux_sym_declare_statement_token1] = ACTIONS(1115), - [aux_sym_declare_statement_token2] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [aux_sym_try_statement_token1] = ACTIONS(1115), - [aux_sym_goto_statement_token1] = ACTIONS(1115), - [aux_sym_continue_statement_token1] = ACTIONS(1115), - [aux_sym_break_statement_token1] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [aux_sym_return_statement_token1] = ACTIONS(1115), - [aux_sym_throw_expression_token1] = ACTIONS(1115), - [aux_sym_while_statement_token1] = ACTIONS(1115), - [aux_sym_while_statement_token2] = ACTIONS(1115), - [aux_sym_do_statement_token1] = ACTIONS(1115), - [aux_sym_for_statement_token1] = ACTIONS(1115), - [aux_sym_for_statement_token2] = ACTIONS(1115), - [aux_sym_foreach_statement_token1] = ACTIONS(1115), - [aux_sym_foreach_statement_token2] = ACTIONS(1115), - [aux_sym_if_statement_token1] = ACTIONS(1115), - [aux_sym_if_statement_token2] = ACTIONS(1115), - [aux_sym_else_if_clause_token1] = ACTIONS(1115), - [aux_sym_else_clause_token1] = ACTIONS(1115), - [aux_sym_match_expression_token1] = ACTIONS(1115), - [aux_sym_match_default_expression_token1] = ACTIONS(1115), - [aux_sym_switch_statement_token1] = ACTIONS(1115), - [aux_sym_switch_block_token1] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [aux_sym_clone_expression_token1] = ACTIONS(1115), - [aux_sym_print_intrinsic_token1] = ACTIONS(1115), - [aux_sym_object_creation_expression_token1] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [sym_shell_command_expression] = ACTIONS(1113), - [aux_sym__list_destructing_token1] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_self] = ACTIONS(1115), - [anon_sym_parent] = ACTIONS(1115), - [anon_sym_POUND_LBRACK] = ACTIONS(1113), - [aux_sym_encapsed_string_token1] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [anon_sym_SQUOTE] = ACTIONS(1113), - [aux_sym_string_token1] = ACTIONS(1113), - [sym_boolean] = ACTIONS(1115), - [sym_null] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1113), - [aux_sym_yield_expression_token1] = ACTIONS(1115), - [aux_sym_include_expression_token1] = ACTIONS(1115), - [aux_sym_include_once_expression_token1] = ACTIONS(1115), - [aux_sym_require_expression_token1] = ACTIONS(1115), - [aux_sym_require_once_expression_token1] = ACTIONS(1115), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1113), - }, - [493] = { - [sym_text_interpolation] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1113), - [sym_name] = ACTIONS(1115), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1113), - [aux_sym_function_static_declaration_token1] = ACTIONS(1115), - [aux_sym_global_declaration_token1] = ACTIONS(1115), - [aux_sym_namespace_definition_token1] = ACTIONS(1115), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1115), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1115), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1115), - [anon_sym_BSLASH] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [aux_sym_trait_declaration_token1] = ACTIONS(1115), - [aux_sym_interface_declaration_token1] = ACTIONS(1115), - [aux_sym_enum_declaration_token1] = ACTIONS(1115), - [aux_sym_enum_case_token1] = ACTIONS(1115), - [aux_sym_class_declaration_token1] = ACTIONS(1115), - [aux_sym_final_modifier_token1] = ACTIONS(1115), - [aux_sym_abstract_modifier_token1] = ACTIONS(1115), - [aux_sym_visibility_modifier_token1] = ACTIONS(1115), - [aux_sym_visibility_modifier_token2] = ACTIONS(1115), - [aux_sym_visibility_modifier_token3] = ACTIONS(1115), - [aux_sym_arrow_function_token1] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(1113), - [aux_sym_cast_type_token1] = ACTIONS(1115), - [aux_sym_echo_statement_token1] = ACTIONS(1115), - [anon_sym_unset] = ACTIONS(1115), - [aux_sym_declare_statement_token1] = ACTIONS(1115), - [aux_sym_declare_statement_token2] = ACTIONS(1115), - [sym_float] = ACTIONS(1115), - [aux_sym_try_statement_token1] = ACTIONS(1115), - [aux_sym_goto_statement_token1] = ACTIONS(1115), - [aux_sym_continue_statement_token1] = ACTIONS(1115), - [aux_sym_break_statement_token1] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [aux_sym_return_statement_token1] = ACTIONS(1115), - [aux_sym_throw_expression_token1] = ACTIONS(1115), - [aux_sym_while_statement_token1] = ACTIONS(1115), - [aux_sym_while_statement_token2] = ACTIONS(1115), - [aux_sym_do_statement_token1] = ACTIONS(1115), - [aux_sym_for_statement_token1] = ACTIONS(1115), - [aux_sym_for_statement_token2] = ACTIONS(1115), - [aux_sym_foreach_statement_token1] = ACTIONS(1115), - [aux_sym_foreach_statement_token2] = ACTIONS(1115), - [aux_sym_if_statement_token1] = ACTIONS(1115), - [aux_sym_if_statement_token2] = ACTIONS(1115), - [aux_sym_else_if_clause_token1] = ACTIONS(1115), - [aux_sym_else_clause_token1] = ACTIONS(1115), - [aux_sym_match_expression_token1] = ACTIONS(1115), - [aux_sym_match_default_expression_token1] = ACTIONS(1115), - [aux_sym_switch_statement_token1] = ACTIONS(1115), - [aux_sym_switch_block_token1] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [aux_sym_clone_expression_token1] = ACTIONS(1115), - [aux_sym_print_intrinsic_token1] = ACTIONS(1115), - [aux_sym_object_creation_expression_token1] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [sym_shell_command_expression] = ACTIONS(1113), - [aux_sym__list_destructing_token1] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_self] = ACTIONS(1115), - [anon_sym_parent] = ACTIONS(1115), - [anon_sym_POUND_LBRACK] = ACTIONS(1113), - [aux_sym_encapsed_string_token1] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [anon_sym_SQUOTE] = ACTIONS(1113), - [aux_sym_string_token1] = ACTIONS(1113), - [sym_boolean] = ACTIONS(1115), - [sym_null] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1113), - [aux_sym_yield_expression_token1] = ACTIONS(1115), - [aux_sym_include_expression_token1] = ACTIONS(1115), - [aux_sym_include_once_expression_token1] = ACTIONS(1115), - [aux_sym_require_expression_token1] = ACTIONS(1115), - [aux_sym_require_once_expression_token1] = ACTIONS(1115), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1113), - }, - [494] = { - [sym_text_interpolation] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1117), - [sym_name] = ACTIONS(1119), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1117), - [aux_sym_function_static_declaration_token1] = ACTIONS(1119), - [aux_sym_global_declaration_token1] = ACTIONS(1119), - [aux_sym_namespace_definition_token1] = ACTIONS(1119), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1119), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1119), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1119), - [anon_sym_BSLASH] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [aux_sym_trait_declaration_token1] = ACTIONS(1119), - [aux_sym_interface_declaration_token1] = ACTIONS(1119), - [aux_sym_enum_declaration_token1] = ACTIONS(1119), - [aux_sym_enum_case_token1] = ACTIONS(1119), - [aux_sym_class_declaration_token1] = ACTIONS(1119), - [aux_sym_final_modifier_token1] = ACTIONS(1119), - [aux_sym_abstract_modifier_token1] = ACTIONS(1119), - [aux_sym_visibility_modifier_token1] = ACTIONS(1119), - [aux_sym_visibility_modifier_token2] = ACTIONS(1119), - [aux_sym_visibility_modifier_token3] = ACTIONS(1119), - [aux_sym_arrow_function_token1] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1117), - [aux_sym_cast_type_token1] = ACTIONS(1119), - [aux_sym_echo_statement_token1] = ACTIONS(1119), - [anon_sym_unset] = ACTIONS(1119), - [aux_sym_declare_statement_token1] = ACTIONS(1119), - [aux_sym_declare_statement_token2] = ACTIONS(1119), - [sym_float] = ACTIONS(1119), - [aux_sym_try_statement_token1] = ACTIONS(1119), - [aux_sym_goto_statement_token1] = ACTIONS(1119), - [aux_sym_continue_statement_token1] = ACTIONS(1119), - [aux_sym_break_statement_token1] = ACTIONS(1119), - [sym_integer] = ACTIONS(1119), - [aux_sym_return_statement_token1] = ACTIONS(1119), - [aux_sym_throw_expression_token1] = ACTIONS(1119), - [aux_sym_while_statement_token1] = ACTIONS(1119), - [aux_sym_while_statement_token2] = ACTIONS(1119), - [aux_sym_do_statement_token1] = ACTIONS(1119), - [aux_sym_for_statement_token1] = ACTIONS(1119), - [aux_sym_for_statement_token2] = ACTIONS(1119), - [aux_sym_foreach_statement_token1] = ACTIONS(1119), - [aux_sym_foreach_statement_token2] = ACTIONS(1119), - [aux_sym_if_statement_token1] = ACTIONS(1119), - [aux_sym_if_statement_token2] = ACTIONS(1119), - [aux_sym_else_if_clause_token1] = ACTIONS(1119), - [aux_sym_else_clause_token1] = ACTIONS(1119), - [aux_sym_match_expression_token1] = ACTIONS(1119), - [aux_sym_match_default_expression_token1] = ACTIONS(1119), - [aux_sym_switch_statement_token1] = ACTIONS(1119), - [aux_sym_switch_block_token1] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1117), - [aux_sym_clone_expression_token1] = ACTIONS(1119), - [aux_sym_print_intrinsic_token1] = ACTIONS(1119), - [aux_sym_object_creation_expression_token1] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [sym_shell_command_expression] = ACTIONS(1117), - [aux_sym__list_destructing_token1] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1117), - [anon_sym_self] = ACTIONS(1119), - [anon_sym_parent] = ACTIONS(1119), - [anon_sym_POUND_LBRACK] = ACTIONS(1117), - [aux_sym_encapsed_string_token1] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1117), - [anon_sym_SQUOTE] = ACTIONS(1117), - [aux_sym_string_token1] = ACTIONS(1117), - [sym_boolean] = ACTIONS(1119), - [sym_null] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1117), - [aux_sym_yield_expression_token1] = ACTIONS(1119), - [aux_sym_include_expression_token1] = ACTIONS(1119), - [aux_sym_include_once_expression_token1] = ACTIONS(1119), - [aux_sym_require_expression_token1] = ACTIONS(1119), - [aux_sym_require_once_expression_token1] = ACTIONS(1119), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1117), - }, - [495] = { - [sym_text_interpolation] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1121), - [sym_name] = ACTIONS(1123), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1121), - [aux_sym_function_static_declaration_token1] = ACTIONS(1123), - [aux_sym_global_declaration_token1] = ACTIONS(1123), - [aux_sym_namespace_definition_token1] = ACTIONS(1123), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1123), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1123), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1123), - [anon_sym_BSLASH] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(1121), - [anon_sym_RBRACE] = ACTIONS(1121), - [aux_sym_trait_declaration_token1] = ACTIONS(1123), - [aux_sym_interface_declaration_token1] = ACTIONS(1123), - [aux_sym_enum_declaration_token1] = ACTIONS(1123), - [aux_sym_enum_case_token1] = ACTIONS(1123), - [aux_sym_class_declaration_token1] = ACTIONS(1123), - [aux_sym_final_modifier_token1] = ACTIONS(1123), - [aux_sym_abstract_modifier_token1] = ACTIONS(1123), - [aux_sym_visibility_modifier_token1] = ACTIONS(1123), - [aux_sym_visibility_modifier_token2] = ACTIONS(1123), - [aux_sym_visibility_modifier_token3] = ACTIONS(1123), - [aux_sym_arrow_function_token1] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(1121), - [aux_sym_cast_type_token1] = ACTIONS(1123), - [aux_sym_echo_statement_token1] = ACTIONS(1123), - [anon_sym_unset] = ACTIONS(1123), - [aux_sym_declare_statement_token1] = ACTIONS(1123), - [aux_sym_declare_statement_token2] = ACTIONS(1123), - [sym_float] = ACTIONS(1123), - [aux_sym_try_statement_token1] = ACTIONS(1123), - [aux_sym_goto_statement_token1] = ACTIONS(1123), - [aux_sym_continue_statement_token1] = ACTIONS(1123), - [aux_sym_break_statement_token1] = ACTIONS(1123), - [sym_integer] = ACTIONS(1123), - [aux_sym_return_statement_token1] = ACTIONS(1123), - [aux_sym_throw_expression_token1] = ACTIONS(1123), - [aux_sym_while_statement_token1] = ACTIONS(1123), - [aux_sym_while_statement_token2] = ACTIONS(1123), - [aux_sym_do_statement_token1] = ACTIONS(1123), - [aux_sym_for_statement_token1] = ACTIONS(1123), - [aux_sym_for_statement_token2] = ACTIONS(1123), - [aux_sym_foreach_statement_token1] = ACTIONS(1123), - [aux_sym_foreach_statement_token2] = ACTIONS(1123), - [aux_sym_if_statement_token1] = ACTIONS(1123), - [aux_sym_if_statement_token2] = ACTIONS(1123), - [aux_sym_else_if_clause_token1] = ACTIONS(1123), - [aux_sym_else_clause_token1] = ACTIONS(1123), - [aux_sym_match_expression_token1] = ACTIONS(1123), - [aux_sym_match_default_expression_token1] = ACTIONS(1123), - [aux_sym_switch_statement_token1] = ACTIONS(1123), - [aux_sym_switch_block_token1] = ACTIONS(1123), - [anon_sym_AT] = ACTIONS(1121), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1121), - [aux_sym_clone_expression_token1] = ACTIONS(1123), - [aux_sym_print_intrinsic_token1] = ACTIONS(1123), - [aux_sym_object_creation_expression_token1] = ACTIONS(1123), - [anon_sym_PLUS_PLUS] = ACTIONS(1121), - [anon_sym_DASH_DASH] = ACTIONS(1121), - [sym_shell_command_expression] = ACTIONS(1121), - [aux_sym__list_destructing_token1] = ACTIONS(1123), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_self] = ACTIONS(1123), - [anon_sym_parent] = ACTIONS(1123), - [anon_sym_POUND_LBRACK] = ACTIONS(1121), - [aux_sym_encapsed_string_token1] = ACTIONS(1121), - [anon_sym_DQUOTE] = ACTIONS(1121), - [anon_sym_SQUOTE] = ACTIONS(1121), - [aux_sym_string_token1] = ACTIONS(1121), - [sym_boolean] = ACTIONS(1123), - [sym_null] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1121), - [aux_sym_yield_expression_token1] = ACTIONS(1123), - [aux_sym_include_expression_token1] = ACTIONS(1123), - [aux_sym_include_once_expression_token1] = ACTIONS(1123), - [aux_sym_require_expression_token1] = ACTIONS(1123), - [aux_sym_require_once_expression_token1] = ACTIONS(1123), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1121), - }, - [496] = { - [sym_text_interpolation] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_name] = ACTIONS(1127), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1125), - [aux_sym_function_static_declaration_token1] = ACTIONS(1127), - [aux_sym_global_declaration_token1] = ACTIONS(1127), - [aux_sym_namespace_definition_token1] = ACTIONS(1127), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1127), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1127), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1127), - [anon_sym_BSLASH] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [aux_sym_trait_declaration_token1] = ACTIONS(1127), - [aux_sym_interface_declaration_token1] = ACTIONS(1127), - [aux_sym_enum_declaration_token1] = ACTIONS(1127), - [aux_sym_enum_case_token1] = ACTIONS(1127), - [aux_sym_class_declaration_token1] = ACTIONS(1127), - [aux_sym_final_modifier_token1] = ACTIONS(1127), - [aux_sym_abstract_modifier_token1] = ACTIONS(1127), - [aux_sym_visibility_modifier_token1] = ACTIONS(1127), - [aux_sym_visibility_modifier_token2] = ACTIONS(1127), - [aux_sym_visibility_modifier_token3] = ACTIONS(1127), - [aux_sym_arrow_function_token1] = ACTIONS(1127), - [anon_sym_LPAREN] = ACTIONS(1125), - [aux_sym_cast_type_token1] = ACTIONS(1127), - [aux_sym_echo_statement_token1] = ACTIONS(1127), - [anon_sym_unset] = ACTIONS(1127), - [aux_sym_declare_statement_token1] = ACTIONS(1127), - [aux_sym_declare_statement_token2] = ACTIONS(1127), - [sym_float] = ACTIONS(1127), - [aux_sym_try_statement_token1] = ACTIONS(1127), - [aux_sym_goto_statement_token1] = ACTIONS(1127), - [aux_sym_continue_statement_token1] = ACTIONS(1127), - [aux_sym_break_statement_token1] = ACTIONS(1127), - [sym_integer] = ACTIONS(1127), - [aux_sym_return_statement_token1] = ACTIONS(1127), - [aux_sym_throw_expression_token1] = ACTIONS(1127), - [aux_sym_while_statement_token1] = ACTIONS(1127), - [aux_sym_while_statement_token2] = ACTIONS(1127), - [aux_sym_do_statement_token1] = ACTIONS(1127), - [aux_sym_for_statement_token1] = ACTIONS(1127), - [aux_sym_for_statement_token2] = ACTIONS(1127), - [aux_sym_foreach_statement_token1] = ACTIONS(1127), - [aux_sym_foreach_statement_token2] = ACTIONS(1127), - [aux_sym_if_statement_token1] = ACTIONS(1127), - [aux_sym_if_statement_token2] = ACTIONS(1127), - [aux_sym_else_if_clause_token1] = ACTIONS(1127), - [aux_sym_else_clause_token1] = ACTIONS(1127), - [aux_sym_match_expression_token1] = ACTIONS(1127), - [aux_sym_match_default_expression_token1] = ACTIONS(1127), - [aux_sym_switch_statement_token1] = ACTIONS(1127), - [aux_sym_switch_block_token1] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [aux_sym_clone_expression_token1] = ACTIONS(1127), - [aux_sym_print_intrinsic_token1] = ACTIONS(1127), - [aux_sym_object_creation_expression_token1] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [sym_shell_command_expression] = ACTIONS(1125), - [aux_sym__list_destructing_token1] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(1125), - [anon_sym_self] = ACTIONS(1127), - [anon_sym_parent] = ACTIONS(1127), - [anon_sym_POUND_LBRACK] = ACTIONS(1125), - [aux_sym_encapsed_string_token1] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [aux_sym_string_token1] = ACTIONS(1125), - [sym_boolean] = ACTIONS(1127), - [sym_null] = ACTIONS(1127), - [anon_sym_DOLLAR] = ACTIONS(1125), - [aux_sym_yield_expression_token1] = ACTIONS(1127), - [aux_sym_include_expression_token1] = ACTIONS(1127), - [aux_sym_include_once_expression_token1] = ACTIONS(1127), - [aux_sym_require_expression_token1] = ACTIONS(1127), - [aux_sym_require_once_expression_token1] = ACTIONS(1127), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1125), - }, - [497] = { - [sym_text_interpolation] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_name] = ACTIONS(1131), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1129), - [aux_sym_function_static_declaration_token1] = ACTIONS(1131), - [aux_sym_global_declaration_token1] = ACTIONS(1131), - [aux_sym_namespace_definition_token1] = ACTIONS(1131), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1131), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1131), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1131), - [anon_sym_BSLASH] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [aux_sym_trait_declaration_token1] = ACTIONS(1131), - [aux_sym_interface_declaration_token1] = ACTIONS(1131), - [aux_sym_enum_declaration_token1] = ACTIONS(1131), - [aux_sym_enum_case_token1] = ACTIONS(1131), - [aux_sym_class_declaration_token1] = ACTIONS(1131), - [aux_sym_final_modifier_token1] = ACTIONS(1131), - [aux_sym_abstract_modifier_token1] = ACTIONS(1131), - [aux_sym_visibility_modifier_token1] = ACTIONS(1131), - [aux_sym_visibility_modifier_token2] = ACTIONS(1131), - [aux_sym_visibility_modifier_token3] = ACTIONS(1131), - [aux_sym_arrow_function_token1] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1129), - [aux_sym_cast_type_token1] = ACTIONS(1131), - [aux_sym_echo_statement_token1] = ACTIONS(1131), - [anon_sym_unset] = ACTIONS(1131), - [aux_sym_declare_statement_token1] = ACTIONS(1131), - [aux_sym_declare_statement_token2] = ACTIONS(1131), - [sym_float] = ACTIONS(1131), - [aux_sym_try_statement_token1] = ACTIONS(1131), - [aux_sym_goto_statement_token1] = ACTIONS(1131), - [aux_sym_continue_statement_token1] = ACTIONS(1131), - [aux_sym_break_statement_token1] = ACTIONS(1131), - [sym_integer] = ACTIONS(1131), - [aux_sym_return_statement_token1] = ACTIONS(1131), - [aux_sym_throw_expression_token1] = ACTIONS(1131), - [aux_sym_while_statement_token1] = ACTIONS(1131), - [aux_sym_while_statement_token2] = ACTIONS(1131), - [aux_sym_do_statement_token1] = ACTIONS(1131), - [aux_sym_for_statement_token1] = ACTIONS(1131), - [aux_sym_for_statement_token2] = ACTIONS(1131), - [aux_sym_foreach_statement_token1] = ACTIONS(1131), - [aux_sym_foreach_statement_token2] = ACTIONS(1131), - [aux_sym_if_statement_token1] = ACTIONS(1131), - [aux_sym_if_statement_token2] = ACTIONS(1131), - [aux_sym_else_if_clause_token1] = ACTIONS(1131), - [aux_sym_else_clause_token1] = ACTIONS(1131), - [aux_sym_match_expression_token1] = ACTIONS(1131), - [aux_sym_match_default_expression_token1] = ACTIONS(1131), - [aux_sym_switch_statement_token1] = ACTIONS(1131), - [aux_sym_switch_block_token1] = ACTIONS(1131), - [anon_sym_AT] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [aux_sym_clone_expression_token1] = ACTIONS(1131), - [aux_sym_print_intrinsic_token1] = ACTIONS(1131), - [aux_sym_object_creation_expression_token1] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [sym_shell_command_expression] = ACTIONS(1129), - [aux_sym__list_destructing_token1] = ACTIONS(1131), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_self] = ACTIONS(1131), - [anon_sym_parent] = ACTIONS(1131), - [anon_sym_POUND_LBRACK] = ACTIONS(1129), - [aux_sym_encapsed_string_token1] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [aux_sym_string_token1] = ACTIONS(1129), - [sym_boolean] = ACTIONS(1131), - [sym_null] = ACTIONS(1131), - [anon_sym_DOLLAR] = ACTIONS(1129), - [aux_sym_yield_expression_token1] = ACTIONS(1131), - [aux_sym_include_expression_token1] = ACTIONS(1131), - [aux_sym_include_once_expression_token1] = ACTIONS(1131), - [aux_sym_require_expression_token1] = ACTIONS(1131), - [aux_sym_require_once_expression_token1] = ACTIONS(1131), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1129), - }, - [498] = { - [sym_text_interpolation] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_name] = ACTIONS(1135), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1133), - [aux_sym_function_static_declaration_token1] = ACTIONS(1135), - [aux_sym_global_declaration_token1] = ACTIONS(1135), - [aux_sym_namespace_definition_token1] = ACTIONS(1135), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1135), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1135), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [aux_sym_trait_declaration_token1] = ACTIONS(1135), - [aux_sym_interface_declaration_token1] = ACTIONS(1135), - [aux_sym_enum_declaration_token1] = ACTIONS(1135), - [aux_sym_enum_case_token1] = ACTIONS(1135), - [aux_sym_class_declaration_token1] = ACTIONS(1135), - [aux_sym_final_modifier_token1] = ACTIONS(1135), - [aux_sym_abstract_modifier_token1] = ACTIONS(1135), - [aux_sym_visibility_modifier_token1] = ACTIONS(1135), - [aux_sym_visibility_modifier_token2] = ACTIONS(1135), - [aux_sym_visibility_modifier_token3] = ACTIONS(1135), - [aux_sym_arrow_function_token1] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1133), - [aux_sym_cast_type_token1] = ACTIONS(1135), - [aux_sym_echo_statement_token1] = ACTIONS(1135), - [anon_sym_unset] = ACTIONS(1135), - [aux_sym_declare_statement_token1] = ACTIONS(1135), - [aux_sym_declare_statement_token2] = ACTIONS(1135), - [sym_float] = ACTIONS(1135), - [aux_sym_try_statement_token1] = ACTIONS(1135), - [aux_sym_goto_statement_token1] = ACTIONS(1135), - [aux_sym_continue_statement_token1] = ACTIONS(1135), - [aux_sym_break_statement_token1] = ACTIONS(1135), - [sym_integer] = ACTIONS(1135), - [aux_sym_return_statement_token1] = ACTIONS(1135), - [aux_sym_throw_expression_token1] = ACTIONS(1135), - [aux_sym_while_statement_token1] = ACTIONS(1135), - [aux_sym_while_statement_token2] = ACTIONS(1135), - [aux_sym_do_statement_token1] = ACTIONS(1135), - [aux_sym_for_statement_token1] = ACTIONS(1135), - [aux_sym_for_statement_token2] = ACTIONS(1135), - [aux_sym_foreach_statement_token1] = ACTIONS(1135), - [aux_sym_foreach_statement_token2] = ACTIONS(1135), - [aux_sym_if_statement_token1] = ACTIONS(1135), - [aux_sym_if_statement_token2] = ACTIONS(1135), - [aux_sym_else_if_clause_token1] = ACTIONS(1135), - [aux_sym_else_clause_token1] = ACTIONS(1135), - [aux_sym_match_expression_token1] = ACTIONS(1135), - [aux_sym_match_default_expression_token1] = ACTIONS(1135), - [aux_sym_switch_statement_token1] = ACTIONS(1135), - [aux_sym_switch_block_token1] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1133), - [aux_sym_clone_expression_token1] = ACTIONS(1135), - [aux_sym_print_intrinsic_token1] = ACTIONS(1135), - [aux_sym_object_creation_expression_token1] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1133), - [sym_shell_command_expression] = ACTIONS(1133), - [aux_sym__list_destructing_token1] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1133), - [anon_sym_self] = ACTIONS(1135), - [anon_sym_parent] = ACTIONS(1135), - [anon_sym_POUND_LBRACK] = ACTIONS(1133), - [aux_sym_encapsed_string_token1] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1133), - [aux_sym_string_token1] = ACTIONS(1133), - [sym_boolean] = ACTIONS(1135), - [sym_null] = ACTIONS(1135), - [anon_sym_DOLLAR] = ACTIONS(1133), - [aux_sym_yield_expression_token1] = ACTIONS(1135), - [aux_sym_include_expression_token1] = ACTIONS(1135), - [aux_sym_include_once_expression_token1] = ACTIONS(1135), - [aux_sym_require_expression_token1] = ACTIONS(1135), - [aux_sym_require_once_expression_token1] = ACTIONS(1135), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1133), - }, - [499] = { - [sym_text_interpolation] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_name] = ACTIONS(1139), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1137), - [aux_sym_function_static_declaration_token1] = ACTIONS(1139), - [aux_sym_global_declaration_token1] = ACTIONS(1139), - [aux_sym_namespace_definition_token1] = ACTIONS(1139), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1139), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1139), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1139), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [aux_sym_trait_declaration_token1] = ACTIONS(1139), - [aux_sym_interface_declaration_token1] = ACTIONS(1139), - [aux_sym_enum_declaration_token1] = ACTIONS(1139), - [aux_sym_enum_case_token1] = ACTIONS(1139), - [aux_sym_class_declaration_token1] = ACTIONS(1139), - [aux_sym_final_modifier_token1] = ACTIONS(1139), - [aux_sym_abstract_modifier_token1] = ACTIONS(1139), - [aux_sym_visibility_modifier_token1] = ACTIONS(1139), - [aux_sym_visibility_modifier_token2] = ACTIONS(1139), - [aux_sym_visibility_modifier_token3] = ACTIONS(1139), - [aux_sym_arrow_function_token1] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [aux_sym_cast_type_token1] = ACTIONS(1139), - [aux_sym_echo_statement_token1] = ACTIONS(1139), - [anon_sym_unset] = ACTIONS(1139), - [aux_sym_declare_statement_token1] = ACTIONS(1139), - [aux_sym_declare_statement_token2] = ACTIONS(1139), - [sym_float] = ACTIONS(1139), - [aux_sym_try_statement_token1] = ACTIONS(1139), - [aux_sym_goto_statement_token1] = ACTIONS(1139), - [aux_sym_continue_statement_token1] = ACTIONS(1139), - [aux_sym_break_statement_token1] = ACTIONS(1139), - [sym_integer] = ACTIONS(1139), - [aux_sym_return_statement_token1] = ACTIONS(1139), - [aux_sym_throw_expression_token1] = ACTIONS(1139), - [aux_sym_while_statement_token1] = ACTIONS(1139), - [aux_sym_while_statement_token2] = ACTIONS(1139), - [aux_sym_do_statement_token1] = ACTIONS(1139), - [aux_sym_for_statement_token1] = ACTIONS(1139), - [aux_sym_for_statement_token2] = ACTIONS(1139), - [aux_sym_foreach_statement_token1] = ACTIONS(1139), - [aux_sym_foreach_statement_token2] = ACTIONS(1139), - [aux_sym_if_statement_token1] = ACTIONS(1139), - [aux_sym_if_statement_token2] = ACTIONS(1139), - [aux_sym_else_if_clause_token1] = ACTIONS(1139), - [aux_sym_else_clause_token1] = ACTIONS(1139), - [aux_sym_match_expression_token1] = ACTIONS(1139), - [aux_sym_match_default_expression_token1] = ACTIONS(1139), - [aux_sym_switch_statement_token1] = ACTIONS(1139), - [aux_sym_switch_block_token1] = ACTIONS(1139), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [aux_sym_clone_expression_token1] = ACTIONS(1139), - [aux_sym_print_intrinsic_token1] = ACTIONS(1139), - [aux_sym_object_creation_expression_token1] = ACTIONS(1139), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_shell_command_expression] = ACTIONS(1137), - [aux_sym__list_destructing_token1] = ACTIONS(1139), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_self] = ACTIONS(1139), - [anon_sym_parent] = ACTIONS(1139), - [anon_sym_POUND_LBRACK] = ACTIONS(1137), - [aux_sym_encapsed_string_token1] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [aux_sym_string_token1] = ACTIONS(1137), - [sym_boolean] = ACTIONS(1139), - [sym_null] = ACTIONS(1139), - [anon_sym_DOLLAR] = ACTIONS(1137), - [aux_sym_yield_expression_token1] = ACTIONS(1139), - [aux_sym_include_expression_token1] = ACTIONS(1139), - [aux_sym_include_once_expression_token1] = ACTIONS(1139), - [aux_sym_require_expression_token1] = ACTIONS(1139), - [aux_sym_require_once_expression_token1] = ACTIONS(1139), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1137), - }, - [500] = { - [sym_text_interpolation] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_name] = ACTIONS(1143), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1141), - [aux_sym_function_static_declaration_token1] = ACTIONS(1143), - [aux_sym_global_declaration_token1] = ACTIONS(1143), - [aux_sym_namespace_definition_token1] = ACTIONS(1143), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1143), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1143), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1143), - [anon_sym_BSLASH] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [aux_sym_trait_declaration_token1] = ACTIONS(1143), - [aux_sym_interface_declaration_token1] = ACTIONS(1143), - [aux_sym_enum_declaration_token1] = ACTIONS(1143), - [aux_sym_enum_case_token1] = ACTIONS(1143), - [aux_sym_class_declaration_token1] = ACTIONS(1143), - [aux_sym_final_modifier_token1] = ACTIONS(1143), - [aux_sym_abstract_modifier_token1] = ACTIONS(1143), - [aux_sym_visibility_modifier_token1] = ACTIONS(1143), - [aux_sym_visibility_modifier_token2] = ACTIONS(1143), - [aux_sym_visibility_modifier_token3] = ACTIONS(1143), - [aux_sym_arrow_function_token1] = ACTIONS(1143), - [anon_sym_LPAREN] = ACTIONS(1141), - [aux_sym_cast_type_token1] = ACTIONS(1143), - [aux_sym_echo_statement_token1] = ACTIONS(1143), - [anon_sym_unset] = ACTIONS(1143), - [aux_sym_declare_statement_token1] = ACTIONS(1143), - [aux_sym_declare_statement_token2] = ACTIONS(1143), - [sym_float] = ACTIONS(1143), - [aux_sym_try_statement_token1] = ACTIONS(1143), - [aux_sym_goto_statement_token1] = ACTIONS(1143), - [aux_sym_continue_statement_token1] = ACTIONS(1143), - [aux_sym_break_statement_token1] = ACTIONS(1143), - [sym_integer] = ACTIONS(1143), - [aux_sym_return_statement_token1] = ACTIONS(1143), - [aux_sym_throw_expression_token1] = ACTIONS(1143), - [aux_sym_while_statement_token1] = ACTIONS(1143), - [aux_sym_while_statement_token2] = ACTIONS(1143), - [aux_sym_do_statement_token1] = ACTIONS(1143), - [aux_sym_for_statement_token1] = ACTIONS(1143), - [aux_sym_for_statement_token2] = ACTIONS(1143), - [aux_sym_foreach_statement_token1] = ACTIONS(1143), - [aux_sym_foreach_statement_token2] = ACTIONS(1143), - [aux_sym_if_statement_token1] = ACTIONS(1143), - [aux_sym_if_statement_token2] = ACTIONS(1143), - [aux_sym_else_if_clause_token1] = ACTIONS(1143), - [aux_sym_else_clause_token1] = ACTIONS(1143), - [aux_sym_match_expression_token1] = ACTIONS(1143), - [aux_sym_match_default_expression_token1] = ACTIONS(1143), - [aux_sym_switch_statement_token1] = ACTIONS(1143), - [aux_sym_switch_block_token1] = ACTIONS(1143), - [anon_sym_AT] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [aux_sym_clone_expression_token1] = ACTIONS(1143), - [aux_sym_print_intrinsic_token1] = ACTIONS(1143), - [aux_sym_object_creation_expression_token1] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [sym_shell_command_expression] = ACTIONS(1141), - [aux_sym__list_destructing_token1] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_self] = ACTIONS(1143), - [anon_sym_parent] = ACTIONS(1143), - [anon_sym_POUND_LBRACK] = ACTIONS(1141), - [aux_sym_encapsed_string_token1] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [aux_sym_string_token1] = ACTIONS(1141), - [sym_boolean] = ACTIONS(1143), - [sym_null] = ACTIONS(1143), - [anon_sym_DOLLAR] = ACTIONS(1141), - [aux_sym_yield_expression_token1] = ACTIONS(1143), - [aux_sym_include_expression_token1] = ACTIONS(1143), - [aux_sym_include_once_expression_token1] = ACTIONS(1143), - [aux_sym_require_expression_token1] = ACTIONS(1143), - [aux_sym_require_once_expression_token1] = ACTIONS(1143), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1141), - }, - [501] = { - [sym_text_interpolation] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1145), - [sym_name] = ACTIONS(1147), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1145), - [aux_sym_function_static_declaration_token1] = ACTIONS(1147), - [aux_sym_global_declaration_token1] = ACTIONS(1147), - [aux_sym_namespace_definition_token1] = ACTIONS(1147), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1147), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1147), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1147), - [anon_sym_BSLASH] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1145), - [aux_sym_trait_declaration_token1] = ACTIONS(1147), - [aux_sym_interface_declaration_token1] = ACTIONS(1147), - [aux_sym_enum_declaration_token1] = ACTIONS(1147), - [aux_sym_enum_case_token1] = ACTIONS(1147), - [aux_sym_class_declaration_token1] = ACTIONS(1147), - [aux_sym_final_modifier_token1] = ACTIONS(1147), - [aux_sym_abstract_modifier_token1] = ACTIONS(1147), - [aux_sym_visibility_modifier_token1] = ACTIONS(1147), - [aux_sym_visibility_modifier_token2] = ACTIONS(1147), - [aux_sym_visibility_modifier_token3] = ACTIONS(1147), - [aux_sym_arrow_function_token1] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1145), - [aux_sym_cast_type_token1] = ACTIONS(1147), - [aux_sym_echo_statement_token1] = ACTIONS(1147), - [anon_sym_unset] = ACTIONS(1147), - [aux_sym_declare_statement_token1] = ACTIONS(1147), - [aux_sym_declare_statement_token2] = ACTIONS(1147), - [sym_float] = ACTIONS(1147), - [aux_sym_try_statement_token1] = ACTIONS(1147), - [aux_sym_goto_statement_token1] = ACTIONS(1147), - [aux_sym_continue_statement_token1] = ACTIONS(1147), - [aux_sym_break_statement_token1] = ACTIONS(1147), - [sym_integer] = ACTIONS(1147), - [aux_sym_return_statement_token1] = ACTIONS(1147), - [aux_sym_throw_expression_token1] = ACTIONS(1147), - [aux_sym_while_statement_token1] = ACTIONS(1147), - [aux_sym_while_statement_token2] = ACTIONS(1147), - [aux_sym_do_statement_token1] = ACTIONS(1147), - [aux_sym_for_statement_token1] = ACTIONS(1147), - [aux_sym_for_statement_token2] = ACTIONS(1147), - [aux_sym_foreach_statement_token1] = ACTIONS(1147), - [aux_sym_foreach_statement_token2] = ACTIONS(1147), - [aux_sym_if_statement_token1] = ACTIONS(1147), - [aux_sym_if_statement_token2] = ACTIONS(1147), - [aux_sym_else_if_clause_token1] = ACTIONS(1147), - [aux_sym_else_clause_token1] = ACTIONS(1147), - [aux_sym_match_expression_token1] = ACTIONS(1147), - [aux_sym_match_default_expression_token1] = ACTIONS(1147), - [aux_sym_switch_statement_token1] = ACTIONS(1147), - [aux_sym_switch_block_token1] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(1145), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [aux_sym_clone_expression_token1] = ACTIONS(1147), - [aux_sym_print_intrinsic_token1] = ACTIONS(1147), - [aux_sym_object_creation_expression_token1] = ACTIONS(1147), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [sym_shell_command_expression] = ACTIONS(1145), - [aux_sym__list_destructing_token1] = ACTIONS(1147), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_self] = ACTIONS(1147), - [anon_sym_parent] = ACTIONS(1147), - [anon_sym_POUND_LBRACK] = ACTIONS(1145), - [aux_sym_encapsed_string_token1] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [aux_sym_string_token1] = ACTIONS(1145), - [sym_boolean] = ACTIONS(1147), - [sym_null] = ACTIONS(1147), - [anon_sym_DOLLAR] = ACTIONS(1145), - [aux_sym_yield_expression_token1] = ACTIONS(1147), - [aux_sym_include_expression_token1] = ACTIONS(1147), - [aux_sym_include_once_expression_token1] = ACTIONS(1147), - [aux_sym_require_expression_token1] = ACTIONS(1147), - [aux_sym_require_once_expression_token1] = ACTIONS(1147), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1145), - }, - [502] = { - [sym_text_interpolation] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_name] = ACTIONS(1151), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1149), - [aux_sym_function_static_declaration_token1] = ACTIONS(1151), - [aux_sym_global_declaration_token1] = ACTIONS(1151), - [aux_sym_namespace_definition_token1] = ACTIONS(1151), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1151), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1151), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1151), - [anon_sym_BSLASH] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [aux_sym_trait_declaration_token1] = ACTIONS(1151), - [aux_sym_interface_declaration_token1] = ACTIONS(1151), - [aux_sym_enum_declaration_token1] = ACTIONS(1151), - [aux_sym_enum_case_token1] = ACTIONS(1151), - [aux_sym_class_declaration_token1] = ACTIONS(1151), - [aux_sym_final_modifier_token1] = ACTIONS(1151), - [aux_sym_abstract_modifier_token1] = ACTIONS(1151), - [aux_sym_visibility_modifier_token1] = ACTIONS(1151), - [aux_sym_visibility_modifier_token2] = ACTIONS(1151), - [aux_sym_visibility_modifier_token3] = ACTIONS(1151), - [aux_sym_arrow_function_token1] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1149), - [aux_sym_cast_type_token1] = ACTIONS(1151), - [aux_sym_echo_statement_token1] = ACTIONS(1151), - [anon_sym_unset] = ACTIONS(1151), - [aux_sym_declare_statement_token1] = ACTIONS(1151), - [aux_sym_declare_statement_token2] = ACTIONS(1151), - [sym_float] = ACTIONS(1151), - [aux_sym_try_statement_token1] = ACTIONS(1151), - [aux_sym_goto_statement_token1] = ACTIONS(1151), - [aux_sym_continue_statement_token1] = ACTIONS(1151), - [aux_sym_break_statement_token1] = ACTIONS(1151), - [sym_integer] = ACTIONS(1151), - [aux_sym_return_statement_token1] = ACTIONS(1151), - [aux_sym_throw_expression_token1] = ACTIONS(1151), - [aux_sym_while_statement_token1] = ACTIONS(1151), - [aux_sym_while_statement_token2] = ACTIONS(1151), - [aux_sym_do_statement_token1] = ACTIONS(1151), - [aux_sym_for_statement_token1] = ACTIONS(1151), - [aux_sym_for_statement_token2] = ACTIONS(1151), - [aux_sym_foreach_statement_token1] = ACTIONS(1151), - [aux_sym_foreach_statement_token2] = ACTIONS(1151), - [aux_sym_if_statement_token1] = ACTIONS(1151), - [aux_sym_if_statement_token2] = ACTIONS(1151), - [aux_sym_else_if_clause_token1] = ACTIONS(1151), - [aux_sym_else_clause_token1] = ACTIONS(1151), - [aux_sym_match_expression_token1] = ACTIONS(1151), - [aux_sym_match_default_expression_token1] = ACTIONS(1151), - [aux_sym_switch_statement_token1] = ACTIONS(1151), - [aux_sym_switch_block_token1] = ACTIONS(1151), - [anon_sym_AT] = ACTIONS(1149), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [aux_sym_clone_expression_token1] = ACTIONS(1151), - [aux_sym_print_intrinsic_token1] = ACTIONS(1151), - [aux_sym_object_creation_expression_token1] = ACTIONS(1151), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [sym_shell_command_expression] = ACTIONS(1149), - [aux_sym__list_destructing_token1] = ACTIONS(1151), - [anon_sym_LBRACK] = ACTIONS(1149), - [anon_sym_self] = ACTIONS(1151), - [anon_sym_parent] = ACTIONS(1151), - [anon_sym_POUND_LBRACK] = ACTIONS(1149), - [aux_sym_encapsed_string_token1] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [aux_sym_string_token1] = ACTIONS(1149), - [sym_boolean] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [anon_sym_DOLLAR] = ACTIONS(1149), - [aux_sym_yield_expression_token1] = ACTIONS(1151), - [aux_sym_include_expression_token1] = ACTIONS(1151), - [aux_sym_include_once_expression_token1] = ACTIONS(1151), - [aux_sym_require_expression_token1] = ACTIONS(1151), - [aux_sym_require_once_expression_token1] = ACTIONS(1151), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1149), - }, - [503] = { - [sym_text_interpolation] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_name] = ACTIONS(1155), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1153), - [aux_sym_function_static_declaration_token1] = ACTIONS(1155), - [aux_sym_global_declaration_token1] = ACTIONS(1155), - [aux_sym_namespace_definition_token1] = ACTIONS(1155), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1155), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1155), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1155), - [anon_sym_BSLASH] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [aux_sym_trait_declaration_token1] = ACTIONS(1155), - [aux_sym_interface_declaration_token1] = ACTIONS(1155), - [aux_sym_enum_declaration_token1] = ACTIONS(1155), - [aux_sym_enum_case_token1] = ACTIONS(1155), - [aux_sym_class_declaration_token1] = ACTIONS(1155), - [aux_sym_final_modifier_token1] = ACTIONS(1155), - [aux_sym_abstract_modifier_token1] = ACTIONS(1155), - [aux_sym_visibility_modifier_token1] = ACTIONS(1155), - [aux_sym_visibility_modifier_token2] = ACTIONS(1155), - [aux_sym_visibility_modifier_token3] = ACTIONS(1155), - [aux_sym_arrow_function_token1] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1153), - [aux_sym_cast_type_token1] = ACTIONS(1155), - [aux_sym_echo_statement_token1] = ACTIONS(1155), - [anon_sym_unset] = ACTIONS(1155), - [aux_sym_declare_statement_token1] = ACTIONS(1155), - [aux_sym_declare_statement_token2] = ACTIONS(1155), - [sym_float] = ACTIONS(1155), - [aux_sym_try_statement_token1] = ACTIONS(1155), - [aux_sym_goto_statement_token1] = ACTIONS(1155), - [aux_sym_continue_statement_token1] = ACTIONS(1155), - [aux_sym_break_statement_token1] = ACTIONS(1155), - [sym_integer] = ACTIONS(1155), - [aux_sym_return_statement_token1] = ACTIONS(1155), - [aux_sym_throw_expression_token1] = ACTIONS(1155), - [aux_sym_while_statement_token1] = ACTIONS(1155), - [aux_sym_while_statement_token2] = ACTIONS(1155), - [aux_sym_do_statement_token1] = ACTIONS(1155), - [aux_sym_for_statement_token1] = ACTIONS(1155), - [aux_sym_for_statement_token2] = ACTIONS(1155), - [aux_sym_foreach_statement_token1] = ACTIONS(1155), - [aux_sym_foreach_statement_token2] = ACTIONS(1155), - [aux_sym_if_statement_token1] = ACTIONS(1155), - [aux_sym_if_statement_token2] = ACTIONS(1155), - [aux_sym_else_if_clause_token1] = ACTIONS(1155), - [aux_sym_else_clause_token1] = ACTIONS(1155), - [aux_sym_match_expression_token1] = ACTIONS(1155), - [aux_sym_match_default_expression_token1] = ACTIONS(1155), - [aux_sym_switch_statement_token1] = ACTIONS(1155), - [aux_sym_switch_block_token1] = ACTIONS(1155), - [anon_sym_AT] = ACTIONS(1153), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [aux_sym_clone_expression_token1] = ACTIONS(1155), - [aux_sym_print_intrinsic_token1] = ACTIONS(1155), - [aux_sym_object_creation_expression_token1] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [sym_shell_command_expression] = ACTIONS(1153), - [aux_sym__list_destructing_token1] = ACTIONS(1155), - [anon_sym_LBRACK] = ACTIONS(1153), - [anon_sym_self] = ACTIONS(1155), - [anon_sym_parent] = ACTIONS(1155), - [anon_sym_POUND_LBRACK] = ACTIONS(1153), - [aux_sym_encapsed_string_token1] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [aux_sym_string_token1] = ACTIONS(1153), - [sym_boolean] = ACTIONS(1155), - [sym_null] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(1153), - [aux_sym_yield_expression_token1] = ACTIONS(1155), - [aux_sym_include_expression_token1] = ACTIONS(1155), - [aux_sym_include_once_expression_token1] = ACTIONS(1155), - [aux_sym_require_expression_token1] = ACTIONS(1155), - [aux_sym_require_once_expression_token1] = ACTIONS(1155), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1153), - }, - [504] = { - [sym_text_interpolation] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_name] = ACTIONS(1159), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1157), - [aux_sym_function_static_declaration_token1] = ACTIONS(1159), - [aux_sym_global_declaration_token1] = ACTIONS(1159), - [aux_sym_namespace_definition_token1] = ACTIONS(1159), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1159), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1159), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1159), - [anon_sym_BSLASH] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [aux_sym_trait_declaration_token1] = ACTIONS(1159), - [aux_sym_interface_declaration_token1] = ACTIONS(1159), - [aux_sym_enum_declaration_token1] = ACTIONS(1159), - [aux_sym_enum_case_token1] = ACTIONS(1159), - [aux_sym_class_declaration_token1] = ACTIONS(1159), - [aux_sym_final_modifier_token1] = ACTIONS(1159), - [aux_sym_abstract_modifier_token1] = ACTIONS(1159), - [aux_sym_visibility_modifier_token1] = ACTIONS(1159), - [aux_sym_visibility_modifier_token2] = ACTIONS(1159), - [aux_sym_visibility_modifier_token3] = ACTIONS(1159), - [aux_sym_arrow_function_token1] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1157), - [aux_sym_cast_type_token1] = ACTIONS(1159), - [aux_sym_echo_statement_token1] = ACTIONS(1159), - [anon_sym_unset] = ACTIONS(1159), - [aux_sym_declare_statement_token1] = ACTIONS(1159), - [aux_sym_declare_statement_token2] = ACTIONS(1159), - [sym_float] = ACTIONS(1159), - [aux_sym_try_statement_token1] = ACTIONS(1159), - [aux_sym_goto_statement_token1] = ACTIONS(1159), - [aux_sym_continue_statement_token1] = ACTIONS(1159), - [aux_sym_break_statement_token1] = ACTIONS(1159), - [sym_integer] = ACTIONS(1159), - [aux_sym_return_statement_token1] = ACTIONS(1159), - [aux_sym_throw_expression_token1] = ACTIONS(1159), - [aux_sym_while_statement_token1] = ACTIONS(1159), - [aux_sym_while_statement_token2] = ACTIONS(1159), - [aux_sym_do_statement_token1] = ACTIONS(1159), - [aux_sym_for_statement_token1] = ACTIONS(1159), - [aux_sym_for_statement_token2] = ACTIONS(1159), - [aux_sym_foreach_statement_token1] = ACTIONS(1159), - [aux_sym_foreach_statement_token2] = ACTIONS(1159), - [aux_sym_if_statement_token1] = ACTIONS(1159), - [aux_sym_if_statement_token2] = ACTIONS(1159), - [aux_sym_else_if_clause_token1] = ACTIONS(1159), - [aux_sym_else_clause_token1] = ACTIONS(1159), - [aux_sym_match_expression_token1] = ACTIONS(1159), - [aux_sym_match_default_expression_token1] = ACTIONS(1159), - [aux_sym_switch_statement_token1] = ACTIONS(1159), - [aux_sym_switch_block_token1] = ACTIONS(1159), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1157), - [aux_sym_clone_expression_token1] = ACTIONS(1159), - [aux_sym_print_intrinsic_token1] = ACTIONS(1159), - [aux_sym_object_creation_expression_token1] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [sym_shell_command_expression] = ACTIONS(1157), - [aux_sym__list_destructing_token1] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_self] = ACTIONS(1159), - [anon_sym_parent] = ACTIONS(1159), - [anon_sym_POUND_LBRACK] = ACTIONS(1157), - [aux_sym_encapsed_string_token1] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1157), - [aux_sym_string_token1] = ACTIONS(1157), - [sym_boolean] = ACTIONS(1159), - [sym_null] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1157), - [aux_sym_yield_expression_token1] = ACTIONS(1159), - [aux_sym_include_expression_token1] = ACTIONS(1159), - [aux_sym_include_once_expression_token1] = ACTIONS(1159), - [aux_sym_require_expression_token1] = ACTIONS(1159), - [aux_sym_require_once_expression_token1] = ACTIONS(1159), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1157), - }, - [505] = { - [sym_text_interpolation] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_name] = ACTIONS(1163), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1161), - [aux_sym_function_static_declaration_token1] = ACTIONS(1163), - [aux_sym_global_declaration_token1] = ACTIONS(1163), - [aux_sym_namespace_definition_token1] = ACTIONS(1163), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1163), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1163), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1163), - [anon_sym_BSLASH] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [aux_sym_trait_declaration_token1] = ACTIONS(1163), - [aux_sym_interface_declaration_token1] = ACTIONS(1163), - [aux_sym_enum_declaration_token1] = ACTIONS(1163), - [aux_sym_enum_case_token1] = ACTIONS(1163), - [aux_sym_class_declaration_token1] = ACTIONS(1163), - [aux_sym_final_modifier_token1] = ACTIONS(1163), - [aux_sym_abstract_modifier_token1] = ACTIONS(1163), - [aux_sym_visibility_modifier_token1] = ACTIONS(1163), - [aux_sym_visibility_modifier_token2] = ACTIONS(1163), - [aux_sym_visibility_modifier_token3] = ACTIONS(1163), - [aux_sym_arrow_function_token1] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1161), - [aux_sym_cast_type_token1] = ACTIONS(1163), - [aux_sym_echo_statement_token1] = ACTIONS(1163), - [anon_sym_unset] = ACTIONS(1163), - [aux_sym_declare_statement_token1] = ACTIONS(1163), - [aux_sym_declare_statement_token2] = ACTIONS(1163), - [sym_float] = ACTIONS(1163), - [aux_sym_try_statement_token1] = ACTIONS(1163), - [aux_sym_goto_statement_token1] = ACTIONS(1163), - [aux_sym_continue_statement_token1] = ACTIONS(1163), - [aux_sym_break_statement_token1] = ACTIONS(1163), - [sym_integer] = ACTIONS(1163), - [aux_sym_return_statement_token1] = ACTIONS(1163), - [aux_sym_throw_expression_token1] = ACTIONS(1163), - [aux_sym_while_statement_token1] = ACTIONS(1163), - [aux_sym_while_statement_token2] = ACTIONS(1163), - [aux_sym_do_statement_token1] = ACTIONS(1163), - [aux_sym_for_statement_token1] = ACTIONS(1163), - [aux_sym_for_statement_token2] = ACTIONS(1163), - [aux_sym_foreach_statement_token1] = ACTIONS(1163), - [aux_sym_foreach_statement_token2] = ACTIONS(1163), - [aux_sym_if_statement_token1] = ACTIONS(1163), - [aux_sym_if_statement_token2] = ACTIONS(1163), - [aux_sym_else_if_clause_token1] = ACTIONS(1163), - [aux_sym_else_clause_token1] = ACTIONS(1163), - [aux_sym_match_expression_token1] = ACTIONS(1163), - [aux_sym_match_default_expression_token1] = ACTIONS(1163), - [aux_sym_switch_statement_token1] = ACTIONS(1163), - [aux_sym_switch_block_token1] = ACTIONS(1163), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [aux_sym_clone_expression_token1] = ACTIONS(1163), - [aux_sym_print_intrinsic_token1] = ACTIONS(1163), - [aux_sym_object_creation_expression_token1] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [sym_shell_command_expression] = ACTIONS(1161), - [aux_sym__list_destructing_token1] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1161), - [anon_sym_self] = ACTIONS(1163), - [anon_sym_parent] = ACTIONS(1163), - [anon_sym_POUND_LBRACK] = ACTIONS(1161), - [aux_sym_encapsed_string_token1] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [aux_sym_string_token1] = ACTIONS(1161), - [sym_boolean] = ACTIONS(1163), - [sym_null] = ACTIONS(1163), - [anon_sym_DOLLAR] = ACTIONS(1161), - [aux_sym_yield_expression_token1] = ACTIONS(1163), - [aux_sym_include_expression_token1] = ACTIONS(1163), - [aux_sym_include_once_expression_token1] = ACTIONS(1163), - [aux_sym_require_expression_token1] = ACTIONS(1163), - [aux_sym_require_once_expression_token1] = ACTIONS(1163), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1161), - }, - [506] = { - [sym_text_interpolation] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_name] = ACTIONS(1167), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1165), - [aux_sym_function_static_declaration_token1] = ACTIONS(1167), - [aux_sym_global_declaration_token1] = ACTIONS(1167), - [aux_sym_namespace_definition_token1] = ACTIONS(1167), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1167), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1167), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1167), - [anon_sym_BSLASH] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [aux_sym_trait_declaration_token1] = ACTIONS(1167), - [aux_sym_interface_declaration_token1] = ACTIONS(1167), - [aux_sym_enum_declaration_token1] = ACTIONS(1167), - [aux_sym_enum_case_token1] = ACTIONS(1167), - [aux_sym_class_declaration_token1] = ACTIONS(1167), - [aux_sym_final_modifier_token1] = ACTIONS(1167), - [aux_sym_abstract_modifier_token1] = ACTIONS(1167), - [aux_sym_visibility_modifier_token1] = ACTIONS(1167), - [aux_sym_visibility_modifier_token2] = ACTIONS(1167), - [aux_sym_visibility_modifier_token3] = ACTIONS(1167), - [aux_sym_arrow_function_token1] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1165), - [aux_sym_cast_type_token1] = ACTIONS(1167), - [aux_sym_echo_statement_token1] = ACTIONS(1167), - [anon_sym_unset] = ACTIONS(1167), - [aux_sym_declare_statement_token1] = ACTIONS(1167), - [aux_sym_declare_statement_token2] = ACTIONS(1167), - [sym_float] = ACTIONS(1167), - [aux_sym_try_statement_token1] = ACTIONS(1167), - [aux_sym_goto_statement_token1] = ACTIONS(1167), - [aux_sym_continue_statement_token1] = ACTIONS(1167), - [aux_sym_break_statement_token1] = ACTIONS(1167), - [sym_integer] = ACTIONS(1167), - [aux_sym_return_statement_token1] = ACTIONS(1167), - [aux_sym_throw_expression_token1] = ACTIONS(1167), - [aux_sym_while_statement_token1] = ACTIONS(1167), - [aux_sym_while_statement_token2] = ACTIONS(1167), - [aux_sym_do_statement_token1] = ACTIONS(1167), - [aux_sym_for_statement_token1] = ACTIONS(1167), - [aux_sym_for_statement_token2] = ACTIONS(1167), - [aux_sym_foreach_statement_token1] = ACTIONS(1167), - [aux_sym_foreach_statement_token2] = ACTIONS(1167), - [aux_sym_if_statement_token1] = ACTIONS(1167), - [aux_sym_if_statement_token2] = ACTIONS(1167), - [aux_sym_else_if_clause_token1] = ACTIONS(1167), - [aux_sym_else_clause_token1] = ACTIONS(1167), - [aux_sym_match_expression_token1] = ACTIONS(1167), - [aux_sym_match_default_expression_token1] = ACTIONS(1167), - [aux_sym_switch_statement_token1] = ACTIONS(1167), - [aux_sym_switch_block_token1] = ACTIONS(1167), - [anon_sym_AT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [aux_sym_clone_expression_token1] = ACTIONS(1167), - [aux_sym_print_intrinsic_token1] = ACTIONS(1167), - [aux_sym_object_creation_expression_token1] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [sym_shell_command_expression] = ACTIONS(1165), - [aux_sym__list_destructing_token1] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_parent] = ACTIONS(1167), - [anon_sym_POUND_LBRACK] = ACTIONS(1165), - [aux_sym_encapsed_string_token1] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [aux_sym_string_token1] = ACTIONS(1165), - [sym_boolean] = ACTIONS(1167), - [sym_null] = ACTIONS(1167), - [anon_sym_DOLLAR] = ACTIONS(1165), - [aux_sym_yield_expression_token1] = ACTIONS(1167), - [aux_sym_include_expression_token1] = ACTIONS(1167), - [aux_sym_include_once_expression_token1] = ACTIONS(1167), - [aux_sym_require_expression_token1] = ACTIONS(1167), - [aux_sym_require_once_expression_token1] = ACTIONS(1167), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1165), - }, - [507] = { - [sym_text_interpolation] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1169), - [sym_name] = ACTIONS(1171), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1169), - [aux_sym_function_static_declaration_token1] = ACTIONS(1171), - [aux_sym_global_declaration_token1] = ACTIONS(1171), - [aux_sym_namespace_definition_token1] = ACTIONS(1171), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1171), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1171), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1171), - [anon_sym_BSLASH] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1169), - [aux_sym_trait_declaration_token1] = ACTIONS(1171), - [aux_sym_interface_declaration_token1] = ACTIONS(1171), - [aux_sym_enum_declaration_token1] = ACTIONS(1171), - [aux_sym_enum_case_token1] = ACTIONS(1171), - [aux_sym_class_declaration_token1] = ACTIONS(1171), - [aux_sym_final_modifier_token1] = ACTIONS(1171), - [aux_sym_abstract_modifier_token1] = ACTIONS(1171), - [aux_sym_visibility_modifier_token1] = ACTIONS(1171), - [aux_sym_visibility_modifier_token2] = ACTIONS(1171), - [aux_sym_visibility_modifier_token3] = ACTIONS(1171), - [aux_sym_arrow_function_token1] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1169), - [aux_sym_cast_type_token1] = ACTIONS(1171), - [aux_sym_echo_statement_token1] = ACTIONS(1171), - [anon_sym_unset] = ACTIONS(1171), - [aux_sym_declare_statement_token1] = ACTIONS(1171), - [aux_sym_declare_statement_token2] = ACTIONS(1171), - [sym_float] = ACTIONS(1171), - [aux_sym_try_statement_token1] = ACTIONS(1171), - [aux_sym_goto_statement_token1] = ACTIONS(1171), - [aux_sym_continue_statement_token1] = ACTIONS(1171), - [aux_sym_break_statement_token1] = ACTIONS(1171), - [sym_integer] = ACTIONS(1171), - [aux_sym_return_statement_token1] = ACTIONS(1171), - [aux_sym_throw_expression_token1] = ACTIONS(1171), - [aux_sym_while_statement_token1] = ACTIONS(1171), - [aux_sym_while_statement_token2] = ACTIONS(1171), - [aux_sym_do_statement_token1] = ACTIONS(1171), - [aux_sym_for_statement_token1] = ACTIONS(1171), - [aux_sym_for_statement_token2] = ACTIONS(1171), - [aux_sym_foreach_statement_token1] = ACTIONS(1171), - [aux_sym_foreach_statement_token2] = ACTIONS(1171), - [aux_sym_if_statement_token1] = ACTIONS(1171), - [aux_sym_if_statement_token2] = ACTIONS(1171), - [aux_sym_else_if_clause_token1] = ACTIONS(1171), - [aux_sym_else_clause_token1] = ACTIONS(1171), - [aux_sym_match_expression_token1] = ACTIONS(1171), - [aux_sym_match_default_expression_token1] = ACTIONS(1171), - [aux_sym_switch_statement_token1] = ACTIONS(1171), - [aux_sym_switch_block_token1] = ACTIONS(1171), - [anon_sym_AT] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1171), - [anon_sym_DASH] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1169), - [aux_sym_clone_expression_token1] = ACTIONS(1171), - [aux_sym_print_intrinsic_token1] = ACTIONS(1171), - [aux_sym_object_creation_expression_token1] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1169), - [sym_shell_command_expression] = ACTIONS(1169), - [aux_sym__list_destructing_token1] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(1169), - [anon_sym_self] = ACTIONS(1171), - [anon_sym_parent] = ACTIONS(1171), - [anon_sym_POUND_LBRACK] = ACTIONS(1169), - [aux_sym_encapsed_string_token1] = ACTIONS(1169), - [anon_sym_DQUOTE] = ACTIONS(1169), - [anon_sym_SQUOTE] = ACTIONS(1169), - [aux_sym_string_token1] = ACTIONS(1169), - [sym_boolean] = ACTIONS(1171), - [sym_null] = ACTIONS(1171), - [anon_sym_DOLLAR] = ACTIONS(1169), - [aux_sym_yield_expression_token1] = ACTIONS(1171), - [aux_sym_include_expression_token1] = ACTIONS(1171), - [aux_sym_include_once_expression_token1] = ACTIONS(1171), - [aux_sym_require_expression_token1] = ACTIONS(1171), - [aux_sym_require_once_expression_token1] = ACTIONS(1171), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1169), - }, - [508] = { - [sym_text_interpolation] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1173), - [sym_name] = ACTIONS(1175), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1173), - [aux_sym_function_static_declaration_token1] = ACTIONS(1175), - [aux_sym_global_declaration_token1] = ACTIONS(1175), - [aux_sym_namespace_definition_token1] = ACTIONS(1175), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1175), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1175), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1175), - [anon_sym_BSLASH] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1173), - [aux_sym_trait_declaration_token1] = ACTIONS(1175), - [aux_sym_interface_declaration_token1] = ACTIONS(1175), - [aux_sym_enum_declaration_token1] = ACTIONS(1175), - [aux_sym_enum_case_token1] = ACTIONS(1175), - [aux_sym_class_declaration_token1] = ACTIONS(1175), - [aux_sym_final_modifier_token1] = ACTIONS(1175), - [aux_sym_abstract_modifier_token1] = ACTIONS(1175), - [aux_sym_visibility_modifier_token1] = ACTIONS(1175), - [aux_sym_visibility_modifier_token2] = ACTIONS(1175), - [aux_sym_visibility_modifier_token3] = ACTIONS(1175), - [aux_sym_arrow_function_token1] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1173), - [aux_sym_cast_type_token1] = ACTIONS(1175), - [aux_sym_echo_statement_token1] = ACTIONS(1175), - [anon_sym_unset] = ACTIONS(1175), - [aux_sym_declare_statement_token1] = ACTIONS(1175), - [aux_sym_declare_statement_token2] = ACTIONS(1175), - [sym_float] = ACTIONS(1175), - [aux_sym_try_statement_token1] = ACTIONS(1175), - [aux_sym_goto_statement_token1] = ACTIONS(1175), - [aux_sym_continue_statement_token1] = ACTIONS(1175), - [aux_sym_break_statement_token1] = ACTIONS(1175), - [sym_integer] = ACTIONS(1175), - [aux_sym_return_statement_token1] = ACTIONS(1175), - [aux_sym_throw_expression_token1] = ACTIONS(1175), - [aux_sym_while_statement_token1] = ACTIONS(1175), - [aux_sym_while_statement_token2] = ACTIONS(1175), - [aux_sym_do_statement_token1] = ACTIONS(1175), - [aux_sym_for_statement_token1] = ACTIONS(1175), - [aux_sym_for_statement_token2] = ACTIONS(1175), - [aux_sym_foreach_statement_token1] = ACTIONS(1175), - [aux_sym_foreach_statement_token2] = ACTIONS(1175), - [aux_sym_if_statement_token1] = ACTIONS(1175), - [aux_sym_if_statement_token2] = ACTIONS(1175), - [aux_sym_else_if_clause_token1] = ACTIONS(1175), - [aux_sym_else_clause_token1] = ACTIONS(1175), - [aux_sym_match_expression_token1] = ACTIONS(1175), - [aux_sym_match_default_expression_token1] = ACTIONS(1175), - [aux_sym_switch_statement_token1] = ACTIONS(1175), - [aux_sym_switch_block_token1] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1173), - [aux_sym_clone_expression_token1] = ACTIONS(1175), - [aux_sym_print_intrinsic_token1] = ACTIONS(1175), - [aux_sym_object_creation_expression_token1] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1173), - [anon_sym_DASH_DASH] = ACTIONS(1173), - [sym_shell_command_expression] = ACTIONS(1173), - [aux_sym__list_destructing_token1] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1173), - [anon_sym_self] = ACTIONS(1175), - [anon_sym_parent] = ACTIONS(1175), - [anon_sym_POUND_LBRACK] = ACTIONS(1173), - [aux_sym_encapsed_string_token1] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [anon_sym_SQUOTE] = ACTIONS(1173), - [aux_sym_string_token1] = ACTIONS(1173), - [sym_boolean] = ACTIONS(1175), - [sym_null] = ACTIONS(1175), - [anon_sym_DOLLAR] = ACTIONS(1173), - [aux_sym_yield_expression_token1] = ACTIONS(1175), - [aux_sym_include_expression_token1] = ACTIONS(1175), - [aux_sym_include_once_expression_token1] = ACTIONS(1175), - [aux_sym_require_expression_token1] = ACTIONS(1175), - [aux_sym_require_once_expression_token1] = ACTIONS(1175), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1173), - }, - [509] = { - [sym_text_interpolation] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_name] = ACTIONS(1179), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1177), - [aux_sym_function_static_declaration_token1] = ACTIONS(1179), - [aux_sym_global_declaration_token1] = ACTIONS(1179), - [aux_sym_namespace_definition_token1] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1179), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1179), - [anon_sym_BSLASH] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [aux_sym_trait_declaration_token1] = ACTIONS(1179), - [aux_sym_interface_declaration_token1] = ACTIONS(1179), - [aux_sym_enum_declaration_token1] = ACTIONS(1179), - [aux_sym_enum_case_token1] = ACTIONS(1179), - [aux_sym_class_declaration_token1] = ACTIONS(1179), - [aux_sym_final_modifier_token1] = ACTIONS(1179), - [aux_sym_abstract_modifier_token1] = ACTIONS(1179), - [aux_sym_visibility_modifier_token1] = ACTIONS(1179), - [aux_sym_visibility_modifier_token2] = ACTIONS(1179), - [aux_sym_visibility_modifier_token3] = ACTIONS(1179), - [aux_sym_arrow_function_token1] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1177), - [aux_sym_cast_type_token1] = ACTIONS(1179), - [aux_sym_echo_statement_token1] = ACTIONS(1179), - [anon_sym_unset] = ACTIONS(1179), - [aux_sym_declare_statement_token1] = ACTIONS(1179), - [aux_sym_declare_statement_token2] = ACTIONS(1179), - [sym_float] = ACTIONS(1179), - [aux_sym_try_statement_token1] = ACTIONS(1179), - [aux_sym_goto_statement_token1] = ACTIONS(1179), - [aux_sym_continue_statement_token1] = ACTIONS(1179), - [aux_sym_break_statement_token1] = ACTIONS(1179), - [sym_integer] = ACTIONS(1179), - [aux_sym_return_statement_token1] = ACTIONS(1179), - [aux_sym_throw_expression_token1] = ACTIONS(1179), - [aux_sym_while_statement_token1] = ACTIONS(1179), - [aux_sym_while_statement_token2] = ACTIONS(1179), - [aux_sym_do_statement_token1] = ACTIONS(1179), - [aux_sym_for_statement_token1] = ACTIONS(1179), - [aux_sym_for_statement_token2] = ACTIONS(1179), - [aux_sym_foreach_statement_token1] = ACTIONS(1179), - [aux_sym_foreach_statement_token2] = ACTIONS(1179), - [aux_sym_if_statement_token1] = ACTIONS(1179), - [aux_sym_if_statement_token2] = ACTIONS(1179), - [aux_sym_else_if_clause_token1] = ACTIONS(1179), - [aux_sym_else_clause_token1] = ACTIONS(1179), - [aux_sym_match_expression_token1] = ACTIONS(1179), - [aux_sym_match_default_expression_token1] = ACTIONS(1179), - [aux_sym_switch_statement_token1] = ACTIONS(1179), - [aux_sym_switch_block_token1] = ACTIONS(1179), - [anon_sym_AT] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [aux_sym_clone_expression_token1] = ACTIONS(1179), - [aux_sym_print_intrinsic_token1] = ACTIONS(1179), - [aux_sym_object_creation_expression_token1] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [sym_shell_command_expression] = ACTIONS(1177), - [aux_sym__list_destructing_token1] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_self] = ACTIONS(1179), - [anon_sym_parent] = ACTIONS(1179), - [anon_sym_POUND_LBRACK] = ACTIONS(1177), - [aux_sym_encapsed_string_token1] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(1177), - [sym_boolean] = ACTIONS(1179), - [sym_null] = ACTIONS(1179), - [anon_sym_DOLLAR] = ACTIONS(1177), - [aux_sym_yield_expression_token1] = ACTIONS(1179), - [aux_sym_include_expression_token1] = ACTIONS(1179), - [aux_sym_include_once_expression_token1] = ACTIONS(1179), - [aux_sym_require_expression_token1] = ACTIONS(1179), - [aux_sym_require_once_expression_token1] = ACTIONS(1179), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1177), - }, - [510] = { - [sym_text_interpolation] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_name] = ACTIONS(1167), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1165), - [aux_sym_function_static_declaration_token1] = ACTIONS(1167), - [aux_sym_global_declaration_token1] = ACTIONS(1167), - [aux_sym_namespace_definition_token1] = ACTIONS(1167), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1167), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1167), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1167), - [anon_sym_BSLASH] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [aux_sym_trait_declaration_token1] = ACTIONS(1167), - [aux_sym_interface_declaration_token1] = ACTIONS(1167), - [aux_sym_enum_declaration_token1] = ACTIONS(1167), - [aux_sym_enum_case_token1] = ACTIONS(1167), - [aux_sym_class_declaration_token1] = ACTIONS(1167), - [aux_sym_final_modifier_token1] = ACTIONS(1167), - [aux_sym_abstract_modifier_token1] = ACTIONS(1167), - [aux_sym_visibility_modifier_token1] = ACTIONS(1167), - [aux_sym_visibility_modifier_token2] = ACTIONS(1167), - [aux_sym_visibility_modifier_token3] = ACTIONS(1167), - [aux_sym_arrow_function_token1] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1165), - [aux_sym_cast_type_token1] = ACTIONS(1167), - [aux_sym_echo_statement_token1] = ACTIONS(1167), - [anon_sym_unset] = ACTIONS(1167), - [aux_sym_declare_statement_token1] = ACTIONS(1167), - [aux_sym_declare_statement_token2] = ACTIONS(1167), - [sym_float] = ACTIONS(1167), - [aux_sym_try_statement_token1] = ACTIONS(1167), - [aux_sym_goto_statement_token1] = ACTIONS(1167), - [aux_sym_continue_statement_token1] = ACTIONS(1167), - [aux_sym_break_statement_token1] = ACTIONS(1167), - [sym_integer] = ACTIONS(1167), - [aux_sym_return_statement_token1] = ACTIONS(1167), - [aux_sym_throw_expression_token1] = ACTIONS(1167), - [aux_sym_while_statement_token1] = ACTIONS(1167), - [aux_sym_while_statement_token2] = ACTIONS(1167), - [aux_sym_do_statement_token1] = ACTIONS(1167), - [aux_sym_for_statement_token1] = ACTIONS(1167), - [aux_sym_for_statement_token2] = ACTIONS(1167), - [aux_sym_foreach_statement_token1] = ACTIONS(1167), - [aux_sym_foreach_statement_token2] = ACTIONS(1167), - [aux_sym_if_statement_token1] = ACTIONS(1167), - [aux_sym_if_statement_token2] = ACTIONS(1167), - [aux_sym_else_if_clause_token1] = ACTIONS(1167), - [aux_sym_else_clause_token1] = ACTIONS(1167), - [aux_sym_match_expression_token1] = ACTIONS(1167), - [aux_sym_match_default_expression_token1] = ACTIONS(1167), - [aux_sym_switch_statement_token1] = ACTIONS(1167), - [aux_sym_switch_block_token1] = ACTIONS(1167), - [anon_sym_AT] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [aux_sym_clone_expression_token1] = ACTIONS(1167), - [aux_sym_print_intrinsic_token1] = ACTIONS(1167), - [aux_sym_object_creation_expression_token1] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [sym_shell_command_expression] = ACTIONS(1165), - [aux_sym__list_destructing_token1] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_parent] = ACTIONS(1167), - [anon_sym_POUND_LBRACK] = ACTIONS(1165), - [aux_sym_encapsed_string_token1] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [aux_sym_string_token1] = ACTIONS(1165), - [sym_boolean] = ACTIONS(1167), - [sym_null] = ACTIONS(1167), - [anon_sym_DOLLAR] = ACTIONS(1165), - [aux_sym_yield_expression_token1] = ACTIONS(1167), - [aux_sym_include_expression_token1] = ACTIONS(1167), - [aux_sym_include_once_expression_token1] = ACTIONS(1167), - [aux_sym_require_expression_token1] = ACTIONS(1167), - [aux_sym_require_once_expression_token1] = ACTIONS(1167), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1165), - }, - [511] = { - [sym_text_interpolation] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_name] = ACTIONS(1183), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1181), - [aux_sym_function_static_declaration_token1] = ACTIONS(1183), - [aux_sym_global_declaration_token1] = ACTIONS(1183), - [aux_sym_namespace_definition_token1] = ACTIONS(1183), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1183), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1183), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1183), - [anon_sym_BSLASH] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [aux_sym_trait_declaration_token1] = ACTIONS(1183), - [aux_sym_interface_declaration_token1] = ACTIONS(1183), - [aux_sym_enum_declaration_token1] = ACTIONS(1183), - [aux_sym_enum_case_token1] = ACTIONS(1183), - [aux_sym_class_declaration_token1] = ACTIONS(1183), - [aux_sym_final_modifier_token1] = ACTIONS(1183), - [aux_sym_abstract_modifier_token1] = ACTIONS(1183), - [aux_sym_visibility_modifier_token1] = ACTIONS(1183), - [aux_sym_visibility_modifier_token2] = ACTIONS(1183), - [aux_sym_visibility_modifier_token3] = ACTIONS(1183), - [aux_sym_arrow_function_token1] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1181), - [aux_sym_cast_type_token1] = ACTIONS(1183), - [aux_sym_echo_statement_token1] = ACTIONS(1183), - [anon_sym_unset] = ACTIONS(1183), - [aux_sym_declare_statement_token1] = ACTIONS(1183), - [aux_sym_declare_statement_token2] = ACTIONS(1183), - [sym_float] = ACTIONS(1183), - [aux_sym_try_statement_token1] = ACTIONS(1183), - [aux_sym_goto_statement_token1] = ACTIONS(1183), - [aux_sym_continue_statement_token1] = ACTIONS(1183), - [aux_sym_break_statement_token1] = ACTIONS(1183), - [sym_integer] = ACTIONS(1183), - [aux_sym_return_statement_token1] = ACTIONS(1183), - [aux_sym_throw_expression_token1] = ACTIONS(1183), - [aux_sym_while_statement_token1] = ACTIONS(1183), - [aux_sym_while_statement_token2] = ACTIONS(1183), - [aux_sym_do_statement_token1] = ACTIONS(1183), - [aux_sym_for_statement_token1] = ACTIONS(1183), - [aux_sym_for_statement_token2] = ACTIONS(1183), - [aux_sym_foreach_statement_token1] = ACTIONS(1183), - [aux_sym_foreach_statement_token2] = ACTIONS(1183), - [aux_sym_if_statement_token1] = ACTIONS(1183), - [aux_sym_if_statement_token2] = ACTIONS(1183), - [aux_sym_else_if_clause_token1] = ACTIONS(1183), - [aux_sym_else_clause_token1] = ACTIONS(1183), - [aux_sym_match_expression_token1] = ACTIONS(1183), - [aux_sym_match_default_expression_token1] = ACTIONS(1183), - [aux_sym_switch_statement_token1] = ACTIONS(1183), - [aux_sym_switch_block_token1] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [aux_sym_clone_expression_token1] = ACTIONS(1183), - [aux_sym_print_intrinsic_token1] = ACTIONS(1183), - [aux_sym_object_creation_expression_token1] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [sym_shell_command_expression] = ACTIONS(1181), - [aux_sym__list_destructing_token1] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_self] = ACTIONS(1183), - [anon_sym_parent] = ACTIONS(1183), - [anon_sym_POUND_LBRACK] = ACTIONS(1181), - [aux_sym_encapsed_string_token1] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [aux_sym_string_token1] = ACTIONS(1181), - [sym_boolean] = ACTIONS(1183), - [sym_null] = ACTIONS(1183), - [anon_sym_DOLLAR] = ACTIONS(1181), - [aux_sym_yield_expression_token1] = ACTIONS(1183), - [aux_sym_include_expression_token1] = ACTIONS(1183), - [aux_sym_include_once_expression_token1] = ACTIONS(1183), - [aux_sym_require_expression_token1] = ACTIONS(1183), - [aux_sym_require_once_expression_token1] = ACTIONS(1183), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1181), - }, - [512] = { - [sym_text_interpolation] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_name] = ACTIONS(1187), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1185), - [aux_sym_function_static_declaration_token1] = ACTIONS(1187), - [aux_sym_global_declaration_token1] = ACTIONS(1187), - [aux_sym_namespace_definition_token1] = ACTIONS(1187), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1187), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1187), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1187), - [anon_sym_BSLASH] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [aux_sym_trait_declaration_token1] = ACTIONS(1187), - [aux_sym_interface_declaration_token1] = ACTIONS(1187), - [aux_sym_enum_declaration_token1] = ACTIONS(1187), - [aux_sym_enum_case_token1] = ACTIONS(1187), - [aux_sym_class_declaration_token1] = ACTIONS(1187), - [aux_sym_final_modifier_token1] = ACTIONS(1187), - [aux_sym_abstract_modifier_token1] = ACTIONS(1187), - [aux_sym_visibility_modifier_token1] = ACTIONS(1187), - [aux_sym_visibility_modifier_token2] = ACTIONS(1187), - [aux_sym_visibility_modifier_token3] = ACTIONS(1187), - [aux_sym_arrow_function_token1] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1185), - [aux_sym_cast_type_token1] = ACTIONS(1187), - [aux_sym_echo_statement_token1] = ACTIONS(1187), - [anon_sym_unset] = ACTIONS(1187), - [aux_sym_declare_statement_token1] = ACTIONS(1187), - [aux_sym_declare_statement_token2] = ACTIONS(1187), - [sym_float] = ACTIONS(1187), - [aux_sym_try_statement_token1] = ACTIONS(1187), - [aux_sym_goto_statement_token1] = ACTIONS(1187), - [aux_sym_continue_statement_token1] = ACTIONS(1187), - [aux_sym_break_statement_token1] = ACTIONS(1187), - [sym_integer] = ACTIONS(1187), - [aux_sym_return_statement_token1] = ACTIONS(1187), - [aux_sym_throw_expression_token1] = ACTIONS(1187), - [aux_sym_while_statement_token1] = ACTIONS(1187), - [aux_sym_while_statement_token2] = ACTIONS(1187), - [aux_sym_do_statement_token1] = ACTIONS(1187), - [aux_sym_for_statement_token1] = ACTIONS(1187), - [aux_sym_for_statement_token2] = ACTIONS(1187), - [aux_sym_foreach_statement_token1] = ACTIONS(1187), - [aux_sym_foreach_statement_token2] = ACTIONS(1187), - [aux_sym_if_statement_token1] = ACTIONS(1187), - [aux_sym_if_statement_token2] = ACTIONS(1187), - [aux_sym_else_if_clause_token1] = ACTIONS(1187), - [aux_sym_else_clause_token1] = ACTIONS(1187), - [aux_sym_match_expression_token1] = ACTIONS(1187), - [aux_sym_match_default_expression_token1] = ACTIONS(1187), - [aux_sym_switch_statement_token1] = ACTIONS(1187), - [aux_sym_switch_block_token1] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [aux_sym_clone_expression_token1] = ACTIONS(1187), - [aux_sym_print_intrinsic_token1] = ACTIONS(1187), - [aux_sym_object_creation_expression_token1] = ACTIONS(1187), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [sym_shell_command_expression] = ACTIONS(1185), - [aux_sym__list_destructing_token1] = ACTIONS(1187), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_self] = ACTIONS(1187), - [anon_sym_parent] = ACTIONS(1187), - [anon_sym_POUND_LBRACK] = ACTIONS(1185), - [aux_sym_encapsed_string_token1] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [aux_sym_string_token1] = ACTIONS(1185), - [sym_boolean] = ACTIONS(1187), - [sym_null] = ACTIONS(1187), - [anon_sym_DOLLAR] = ACTIONS(1185), - [aux_sym_yield_expression_token1] = ACTIONS(1187), - [aux_sym_include_expression_token1] = ACTIONS(1187), - [aux_sym_include_once_expression_token1] = ACTIONS(1187), - [aux_sym_require_expression_token1] = ACTIONS(1187), - [aux_sym_require_once_expression_token1] = ACTIONS(1187), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1185), - }, - [513] = { - [sym_text_interpolation] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_name] = ACTIONS(1191), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1189), - [aux_sym_function_static_declaration_token1] = ACTIONS(1191), - [aux_sym_global_declaration_token1] = ACTIONS(1191), - [aux_sym_namespace_definition_token1] = ACTIONS(1191), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1191), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1191), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1191), - [anon_sym_BSLASH] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [aux_sym_trait_declaration_token1] = ACTIONS(1191), - [aux_sym_interface_declaration_token1] = ACTIONS(1191), - [aux_sym_enum_declaration_token1] = ACTIONS(1191), - [aux_sym_enum_case_token1] = ACTIONS(1191), - [aux_sym_class_declaration_token1] = ACTIONS(1191), - [aux_sym_final_modifier_token1] = ACTIONS(1191), - [aux_sym_abstract_modifier_token1] = ACTIONS(1191), - [aux_sym_visibility_modifier_token1] = ACTIONS(1191), - [aux_sym_visibility_modifier_token2] = ACTIONS(1191), - [aux_sym_visibility_modifier_token3] = ACTIONS(1191), - [aux_sym_arrow_function_token1] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1189), - [aux_sym_cast_type_token1] = ACTIONS(1191), - [aux_sym_echo_statement_token1] = ACTIONS(1191), - [anon_sym_unset] = ACTIONS(1191), - [aux_sym_declare_statement_token1] = ACTIONS(1191), - [aux_sym_declare_statement_token2] = ACTIONS(1191), - [sym_float] = ACTIONS(1191), - [aux_sym_try_statement_token1] = ACTIONS(1191), - [aux_sym_goto_statement_token1] = ACTIONS(1191), - [aux_sym_continue_statement_token1] = ACTIONS(1191), - [aux_sym_break_statement_token1] = ACTIONS(1191), - [sym_integer] = ACTIONS(1191), - [aux_sym_return_statement_token1] = ACTIONS(1191), - [aux_sym_throw_expression_token1] = ACTIONS(1191), - [aux_sym_while_statement_token1] = ACTIONS(1191), - [aux_sym_while_statement_token2] = ACTIONS(1191), - [aux_sym_do_statement_token1] = ACTIONS(1191), - [aux_sym_for_statement_token1] = ACTIONS(1191), - [aux_sym_for_statement_token2] = ACTIONS(1191), - [aux_sym_foreach_statement_token1] = ACTIONS(1191), - [aux_sym_foreach_statement_token2] = ACTIONS(1191), - [aux_sym_if_statement_token1] = ACTIONS(1191), - [aux_sym_if_statement_token2] = ACTIONS(1191), - [aux_sym_else_if_clause_token1] = ACTIONS(1191), - [aux_sym_else_clause_token1] = ACTIONS(1191), - [aux_sym_match_expression_token1] = ACTIONS(1191), - [aux_sym_match_default_expression_token1] = ACTIONS(1191), - [aux_sym_switch_statement_token1] = ACTIONS(1191), - [aux_sym_switch_block_token1] = ACTIONS(1191), - [anon_sym_AT] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1191), - [anon_sym_DASH] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [aux_sym_clone_expression_token1] = ACTIONS(1191), - [aux_sym_print_intrinsic_token1] = ACTIONS(1191), - [aux_sym_object_creation_expression_token1] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [sym_shell_command_expression] = ACTIONS(1189), - [aux_sym__list_destructing_token1] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_self] = ACTIONS(1191), - [anon_sym_parent] = ACTIONS(1191), - [anon_sym_POUND_LBRACK] = ACTIONS(1189), - [aux_sym_encapsed_string_token1] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [aux_sym_string_token1] = ACTIONS(1189), - [sym_boolean] = ACTIONS(1191), - [sym_null] = ACTIONS(1191), - [anon_sym_DOLLAR] = ACTIONS(1189), - [aux_sym_yield_expression_token1] = ACTIONS(1191), - [aux_sym_include_expression_token1] = ACTIONS(1191), - [aux_sym_include_once_expression_token1] = ACTIONS(1191), - [aux_sym_require_expression_token1] = ACTIONS(1191), - [aux_sym_require_once_expression_token1] = ACTIONS(1191), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1189), - }, - [514] = { - [sym_text_interpolation] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1193), - [sym_name] = ACTIONS(1195), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1193), - [aux_sym_function_static_declaration_token1] = ACTIONS(1195), - [aux_sym_global_declaration_token1] = ACTIONS(1195), - [aux_sym_namespace_definition_token1] = ACTIONS(1195), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1195), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1195), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1195), - [anon_sym_BSLASH] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [aux_sym_trait_declaration_token1] = ACTIONS(1195), - [aux_sym_interface_declaration_token1] = ACTIONS(1195), - [aux_sym_enum_declaration_token1] = ACTIONS(1195), - [aux_sym_enum_case_token1] = ACTIONS(1195), - [aux_sym_class_declaration_token1] = ACTIONS(1195), - [aux_sym_final_modifier_token1] = ACTIONS(1195), - [aux_sym_abstract_modifier_token1] = ACTIONS(1195), - [aux_sym_visibility_modifier_token1] = ACTIONS(1195), - [aux_sym_visibility_modifier_token2] = ACTIONS(1195), - [aux_sym_visibility_modifier_token3] = ACTIONS(1195), - [aux_sym_arrow_function_token1] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1193), - [aux_sym_cast_type_token1] = ACTIONS(1195), - [aux_sym_echo_statement_token1] = ACTIONS(1195), - [anon_sym_unset] = ACTIONS(1195), - [aux_sym_declare_statement_token1] = ACTIONS(1195), - [aux_sym_declare_statement_token2] = ACTIONS(1195), - [sym_float] = ACTIONS(1195), - [aux_sym_try_statement_token1] = ACTIONS(1195), - [aux_sym_goto_statement_token1] = ACTIONS(1195), - [aux_sym_continue_statement_token1] = ACTIONS(1195), - [aux_sym_break_statement_token1] = ACTIONS(1195), - [sym_integer] = ACTIONS(1195), - [aux_sym_return_statement_token1] = ACTIONS(1195), - [aux_sym_throw_expression_token1] = ACTIONS(1195), - [aux_sym_while_statement_token1] = ACTIONS(1195), - [aux_sym_while_statement_token2] = ACTIONS(1195), - [aux_sym_do_statement_token1] = ACTIONS(1195), - [aux_sym_for_statement_token1] = ACTIONS(1195), - [aux_sym_for_statement_token2] = ACTIONS(1195), - [aux_sym_foreach_statement_token1] = ACTIONS(1195), - [aux_sym_foreach_statement_token2] = ACTIONS(1195), - [aux_sym_if_statement_token1] = ACTIONS(1195), - [aux_sym_if_statement_token2] = ACTIONS(1195), - [aux_sym_else_if_clause_token1] = ACTIONS(1195), - [aux_sym_else_clause_token1] = ACTIONS(1195), - [aux_sym_match_expression_token1] = ACTIONS(1195), - [aux_sym_match_default_expression_token1] = ACTIONS(1195), - [aux_sym_switch_statement_token1] = ACTIONS(1195), - [aux_sym_switch_block_token1] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [aux_sym_clone_expression_token1] = ACTIONS(1195), - [aux_sym_print_intrinsic_token1] = ACTIONS(1195), - [aux_sym_object_creation_expression_token1] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [sym_shell_command_expression] = ACTIONS(1193), - [aux_sym__list_destructing_token1] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_self] = ACTIONS(1195), - [anon_sym_parent] = ACTIONS(1195), - [anon_sym_POUND_LBRACK] = ACTIONS(1193), - [aux_sym_encapsed_string_token1] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [anon_sym_SQUOTE] = ACTIONS(1193), - [aux_sym_string_token1] = ACTIONS(1193), - [sym_boolean] = ACTIONS(1195), - [sym_null] = ACTIONS(1195), - [anon_sym_DOLLAR] = ACTIONS(1193), - [aux_sym_yield_expression_token1] = ACTIONS(1195), - [aux_sym_include_expression_token1] = ACTIONS(1195), - [aux_sym_include_once_expression_token1] = ACTIONS(1195), - [aux_sym_require_expression_token1] = ACTIONS(1195), - [aux_sym_require_once_expression_token1] = ACTIONS(1195), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1193), - }, - [515] = { - [sym_text_interpolation] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1197), - [sym_name] = ACTIONS(1199), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1197), - [aux_sym_function_static_declaration_token1] = ACTIONS(1199), - [aux_sym_global_declaration_token1] = ACTIONS(1199), - [aux_sym_namespace_definition_token1] = ACTIONS(1199), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1199), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1199), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1199), - [anon_sym_BSLASH] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_RBRACE] = ACTIONS(1197), - [aux_sym_trait_declaration_token1] = ACTIONS(1199), - [aux_sym_interface_declaration_token1] = ACTIONS(1199), - [aux_sym_enum_declaration_token1] = ACTIONS(1199), - [aux_sym_enum_case_token1] = ACTIONS(1199), - [aux_sym_class_declaration_token1] = ACTIONS(1199), - [aux_sym_final_modifier_token1] = ACTIONS(1199), - [aux_sym_abstract_modifier_token1] = ACTIONS(1199), - [aux_sym_visibility_modifier_token1] = ACTIONS(1199), - [aux_sym_visibility_modifier_token2] = ACTIONS(1199), - [aux_sym_visibility_modifier_token3] = ACTIONS(1199), - [aux_sym_arrow_function_token1] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1197), - [aux_sym_cast_type_token1] = ACTIONS(1199), - [aux_sym_echo_statement_token1] = ACTIONS(1199), - [anon_sym_unset] = ACTIONS(1199), - [aux_sym_declare_statement_token1] = ACTIONS(1199), - [aux_sym_declare_statement_token2] = ACTIONS(1199), - [sym_float] = ACTIONS(1199), - [aux_sym_try_statement_token1] = ACTIONS(1199), - [aux_sym_goto_statement_token1] = ACTIONS(1199), - [aux_sym_continue_statement_token1] = ACTIONS(1199), - [aux_sym_break_statement_token1] = ACTIONS(1199), - [sym_integer] = ACTIONS(1199), - [aux_sym_return_statement_token1] = ACTIONS(1199), - [aux_sym_throw_expression_token1] = ACTIONS(1199), - [aux_sym_while_statement_token1] = ACTIONS(1199), - [aux_sym_while_statement_token2] = ACTIONS(1199), - [aux_sym_do_statement_token1] = ACTIONS(1199), - [aux_sym_for_statement_token1] = ACTIONS(1199), - [aux_sym_for_statement_token2] = ACTIONS(1199), - [aux_sym_foreach_statement_token1] = ACTIONS(1199), - [aux_sym_foreach_statement_token2] = ACTIONS(1199), - [aux_sym_if_statement_token1] = ACTIONS(1199), - [aux_sym_if_statement_token2] = ACTIONS(1199), - [aux_sym_else_if_clause_token1] = ACTIONS(1199), - [aux_sym_else_clause_token1] = ACTIONS(1199), - [aux_sym_match_expression_token1] = ACTIONS(1199), - [aux_sym_match_default_expression_token1] = ACTIONS(1199), - [aux_sym_switch_statement_token1] = ACTIONS(1199), - [aux_sym_switch_block_token1] = ACTIONS(1199), - [anon_sym_AT] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1199), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1197), - [aux_sym_clone_expression_token1] = ACTIONS(1199), - [aux_sym_print_intrinsic_token1] = ACTIONS(1199), - [aux_sym_object_creation_expression_token1] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1197), - [sym_shell_command_expression] = ACTIONS(1197), - [aux_sym__list_destructing_token1] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_self] = ACTIONS(1199), - [anon_sym_parent] = ACTIONS(1199), - [anon_sym_POUND_LBRACK] = ACTIONS(1197), - [aux_sym_encapsed_string_token1] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_SQUOTE] = ACTIONS(1197), - [aux_sym_string_token1] = ACTIONS(1197), - [sym_boolean] = ACTIONS(1199), - [sym_null] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1197), - [aux_sym_yield_expression_token1] = ACTIONS(1199), - [aux_sym_include_expression_token1] = ACTIONS(1199), - [aux_sym_include_once_expression_token1] = ACTIONS(1199), - [aux_sym_require_expression_token1] = ACTIONS(1199), - [aux_sym_require_once_expression_token1] = ACTIONS(1199), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1197), - }, - [516] = { - [sym_text_interpolation] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1201), - [sym_name] = ACTIONS(1203), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1201), - [aux_sym_function_static_declaration_token1] = ACTIONS(1203), - [aux_sym_global_declaration_token1] = ACTIONS(1203), - [aux_sym_namespace_definition_token1] = ACTIONS(1203), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1203), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1203), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1203), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [aux_sym_trait_declaration_token1] = ACTIONS(1203), - [aux_sym_interface_declaration_token1] = ACTIONS(1203), - [aux_sym_enum_declaration_token1] = ACTIONS(1203), - [aux_sym_enum_case_token1] = ACTIONS(1203), - [aux_sym_class_declaration_token1] = ACTIONS(1203), - [aux_sym_final_modifier_token1] = ACTIONS(1203), - [aux_sym_abstract_modifier_token1] = ACTIONS(1203), - [aux_sym_visibility_modifier_token1] = ACTIONS(1203), - [aux_sym_visibility_modifier_token2] = ACTIONS(1203), - [aux_sym_visibility_modifier_token3] = ACTIONS(1203), - [aux_sym_arrow_function_token1] = ACTIONS(1203), - [anon_sym_LPAREN] = ACTIONS(1201), - [aux_sym_cast_type_token1] = ACTIONS(1203), - [aux_sym_echo_statement_token1] = ACTIONS(1203), - [anon_sym_unset] = ACTIONS(1203), - [aux_sym_declare_statement_token1] = ACTIONS(1203), - [aux_sym_declare_statement_token2] = ACTIONS(1203), - [sym_float] = ACTIONS(1203), - [aux_sym_try_statement_token1] = ACTIONS(1203), - [aux_sym_goto_statement_token1] = ACTIONS(1203), - [aux_sym_continue_statement_token1] = ACTIONS(1203), - [aux_sym_break_statement_token1] = ACTIONS(1203), - [sym_integer] = ACTIONS(1203), - [aux_sym_return_statement_token1] = ACTIONS(1203), - [aux_sym_throw_expression_token1] = ACTIONS(1203), - [aux_sym_while_statement_token1] = ACTIONS(1203), - [aux_sym_while_statement_token2] = ACTIONS(1203), - [aux_sym_do_statement_token1] = ACTIONS(1203), - [aux_sym_for_statement_token1] = ACTIONS(1203), - [aux_sym_for_statement_token2] = ACTIONS(1203), - [aux_sym_foreach_statement_token1] = ACTIONS(1203), - [aux_sym_foreach_statement_token2] = ACTIONS(1203), - [aux_sym_if_statement_token1] = ACTIONS(1203), - [aux_sym_if_statement_token2] = ACTIONS(1203), - [aux_sym_else_if_clause_token1] = ACTIONS(1203), - [aux_sym_else_clause_token1] = ACTIONS(1203), - [aux_sym_match_expression_token1] = ACTIONS(1203), - [aux_sym_match_default_expression_token1] = ACTIONS(1203), - [aux_sym_switch_statement_token1] = ACTIONS(1203), - [aux_sym_switch_block_token1] = ACTIONS(1203), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [aux_sym_clone_expression_token1] = ACTIONS(1203), - [aux_sym_print_intrinsic_token1] = ACTIONS(1203), - [aux_sym_object_creation_expression_token1] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [sym_shell_command_expression] = ACTIONS(1201), - [aux_sym__list_destructing_token1] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_self] = ACTIONS(1203), - [anon_sym_parent] = ACTIONS(1203), - [anon_sym_POUND_LBRACK] = ACTIONS(1201), - [aux_sym_encapsed_string_token1] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [aux_sym_string_token1] = ACTIONS(1201), - [sym_boolean] = ACTIONS(1203), - [sym_null] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1201), - [aux_sym_yield_expression_token1] = ACTIONS(1203), - [aux_sym_include_expression_token1] = ACTIONS(1203), - [aux_sym_include_once_expression_token1] = ACTIONS(1203), - [aux_sym_require_expression_token1] = ACTIONS(1203), - [aux_sym_require_once_expression_token1] = ACTIONS(1203), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1201), - }, - [517] = { - [sym_text_interpolation] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1205), - [sym_name] = ACTIONS(1207), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1205), - [aux_sym_function_static_declaration_token1] = ACTIONS(1207), - [aux_sym_global_declaration_token1] = ACTIONS(1207), - [aux_sym_namespace_definition_token1] = ACTIONS(1207), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1207), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1207), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1207), - [anon_sym_BSLASH] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), - [aux_sym_trait_declaration_token1] = ACTIONS(1207), - [aux_sym_interface_declaration_token1] = ACTIONS(1207), - [aux_sym_enum_declaration_token1] = ACTIONS(1207), - [aux_sym_enum_case_token1] = ACTIONS(1207), - [aux_sym_class_declaration_token1] = ACTIONS(1207), - [aux_sym_final_modifier_token1] = ACTIONS(1207), - [aux_sym_abstract_modifier_token1] = ACTIONS(1207), - [aux_sym_visibility_modifier_token1] = ACTIONS(1207), - [aux_sym_visibility_modifier_token2] = ACTIONS(1207), - [aux_sym_visibility_modifier_token3] = ACTIONS(1207), - [aux_sym_arrow_function_token1] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1205), - [aux_sym_cast_type_token1] = ACTIONS(1207), - [aux_sym_echo_statement_token1] = ACTIONS(1207), - [anon_sym_unset] = ACTIONS(1207), - [aux_sym_declare_statement_token1] = ACTIONS(1207), - [aux_sym_declare_statement_token2] = ACTIONS(1207), - [sym_float] = ACTIONS(1207), - [aux_sym_try_statement_token1] = ACTIONS(1207), - [aux_sym_goto_statement_token1] = ACTIONS(1207), - [aux_sym_continue_statement_token1] = ACTIONS(1207), - [aux_sym_break_statement_token1] = ACTIONS(1207), - [sym_integer] = ACTIONS(1207), - [aux_sym_return_statement_token1] = ACTIONS(1207), - [aux_sym_throw_expression_token1] = ACTIONS(1207), - [aux_sym_while_statement_token1] = ACTIONS(1207), - [aux_sym_while_statement_token2] = ACTIONS(1207), - [aux_sym_do_statement_token1] = ACTIONS(1207), - [aux_sym_for_statement_token1] = ACTIONS(1207), - [aux_sym_for_statement_token2] = ACTIONS(1207), - [aux_sym_foreach_statement_token1] = ACTIONS(1207), - [aux_sym_foreach_statement_token2] = ACTIONS(1207), - [aux_sym_if_statement_token1] = ACTIONS(1207), - [aux_sym_if_statement_token2] = ACTIONS(1207), - [aux_sym_else_if_clause_token1] = ACTIONS(1207), - [aux_sym_else_clause_token1] = ACTIONS(1207), - [aux_sym_match_expression_token1] = ACTIONS(1207), - [aux_sym_match_default_expression_token1] = ACTIONS(1207), - [aux_sym_switch_statement_token1] = ACTIONS(1207), - [aux_sym_switch_block_token1] = ACTIONS(1207), - [anon_sym_AT] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1205), - [aux_sym_clone_expression_token1] = ACTIONS(1207), - [aux_sym_print_intrinsic_token1] = ACTIONS(1207), - [aux_sym_object_creation_expression_token1] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [sym_shell_command_expression] = ACTIONS(1205), - [aux_sym__list_destructing_token1] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_self] = ACTIONS(1207), - [anon_sym_parent] = ACTIONS(1207), - [anon_sym_POUND_LBRACK] = ACTIONS(1205), - [aux_sym_encapsed_string_token1] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1205), - [aux_sym_string_token1] = ACTIONS(1205), - [sym_boolean] = ACTIONS(1207), - [sym_null] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1205), - [aux_sym_yield_expression_token1] = ACTIONS(1207), - [aux_sym_include_expression_token1] = ACTIONS(1207), - [aux_sym_include_once_expression_token1] = ACTIONS(1207), - [aux_sym_require_expression_token1] = ACTIONS(1207), - [aux_sym_require_once_expression_token1] = ACTIONS(1207), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1205), - }, - [518] = { - [sym_text_interpolation] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1209), - [sym_name] = ACTIONS(1211), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1209), - [aux_sym_function_static_declaration_token1] = ACTIONS(1211), - [aux_sym_global_declaration_token1] = ACTIONS(1211), - [aux_sym_namespace_definition_token1] = ACTIONS(1211), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1211), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1211), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_RBRACE] = ACTIONS(1209), - [aux_sym_trait_declaration_token1] = ACTIONS(1211), - [aux_sym_interface_declaration_token1] = ACTIONS(1211), - [aux_sym_enum_declaration_token1] = ACTIONS(1211), - [aux_sym_enum_case_token1] = ACTIONS(1211), - [aux_sym_class_declaration_token1] = ACTIONS(1211), - [aux_sym_final_modifier_token1] = ACTIONS(1211), - [aux_sym_abstract_modifier_token1] = ACTIONS(1211), - [aux_sym_visibility_modifier_token1] = ACTIONS(1211), - [aux_sym_visibility_modifier_token2] = ACTIONS(1211), - [aux_sym_visibility_modifier_token3] = ACTIONS(1211), - [aux_sym_arrow_function_token1] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1209), - [aux_sym_cast_type_token1] = ACTIONS(1211), - [aux_sym_echo_statement_token1] = ACTIONS(1211), - [anon_sym_unset] = ACTIONS(1211), - [aux_sym_declare_statement_token1] = ACTIONS(1211), - [aux_sym_declare_statement_token2] = ACTIONS(1211), - [sym_float] = ACTIONS(1211), - [aux_sym_try_statement_token1] = ACTIONS(1211), - [aux_sym_goto_statement_token1] = ACTIONS(1211), - [aux_sym_continue_statement_token1] = ACTIONS(1211), - [aux_sym_break_statement_token1] = ACTIONS(1211), - [sym_integer] = ACTIONS(1211), - [aux_sym_return_statement_token1] = ACTIONS(1211), - [aux_sym_throw_expression_token1] = ACTIONS(1211), - [aux_sym_while_statement_token1] = ACTIONS(1211), - [aux_sym_while_statement_token2] = ACTIONS(1211), - [aux_sym_do_statement_token1] = ACTIONS(1211), - [aux_sym_for_statement_token1] = ACTIONS(1211), - [aux_sym_for_statement_token2] = ACTIONS(1211), - [aux_sym_foreach_statement_token1] = ACTIONS(1211), - [aux_sym_foreach_statement_token2] = ACTIONS(1211), - [aux_sym_if_statement_token1] = ACTIONS(1211), - [aux_sym_if_statement_token2] = ACTIONS(1211), - [aux_sym_else_if_clause_token1] = ACTIONS(1211), - [aux_sym_else_clause_token1] = ACTIONS(1211), - [aux_sym_match_expression_token1] = ACTIONS(1211), - [aux_sym_match_default_expression_token1] = ACTIONS(1211), - [aux_sym_switch_statement_token1] = ACTIONS(1211), - [aux_sym_switch_block_token1] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1209), - [aux_sym_clone_expression_token1] = ACTIONS(1211), - [aux_sym_print_intrinsic_token1] = ACTIONS(1211), - [aux_sym_object_creation_expression_token1] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1209), - [sym_shell_command_expression] = ACTIONS(1209), - [aux_sym__list_destructing_token1] = ACTIONS(1211), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_self] = ACTIONS(1211), - [anon_sym_parent] = ACTIONS(1211), - [anon_sym_POUND_LBRACK] = ACTIONS(1209), - [aux_sym_encapsed_string_token1] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [aux_sym_string_token1] = ACTIONS(1209), - [sym_boolean] = ACTIONS(1211), - [sym_null] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1209), - [aux_sym_yield_expression_token1] = ACTIONS(1211), - [aux_sym_include_expression_token1] = ACTIONS(1211), - [aux_sym_include_once_expression_token1] = ACTIONS(1211), - [aux_sym_require_expression_token1] = ACTIONS(1211), - [aux_sym_require_once_expression_token1] = ACTIONS(1211), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1209), - }, - [519] = { - [sym_text_interpolation] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_name] = ACTIONS(1215), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1213), - [aux_sym_function_static_declaration_token1] = ACTIONS(1215), - [aux_sym_global_declaration_token1] = ACTIONS(1215), - [aux_sym_namespace_definition_token1] = ACTIONS(1215), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1215), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1215), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1215), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), - [aux_sym_trait_declaration_token1] = ACTIONS(1215), - [aux_sym_interface_declaration_token1] = ACTIONS(1215), - [aux_sym_enum_declaration_token1] = ACTIONS(1215), - [aux_sym_enum_case_token1] = ACTIONS(1215), - [aux_sym_class_declaration_token1] = ACTIONS(1215), - [aux_sym_final_modifier_token1] = ACTIONS(1215), - [aux_sym_abstract_modifier_token1] = ACTIONS(1215), - [aux_sym_visibility_modifier_token1] = ACTIONS(1215), - [aux_sym_visibility_modifier_token2] = ACTIONS(1215), - [aux_sym_visibility_modifier_token3] = ACTIONS(1215), - [aux_sym_arrow_function_token1] = ACTIONS(1215), - [anon_sym_LPAREN] = ACTIONS(1213), - [aux_sym_cast_type_token1] = ACTIONS(1215), - [aux_sym_echo_statement_token1] = ACTIONS(1215), - [anon_sym_unset] = ACTIONS(1215), - [aux_sym_declare_statement_token1] = ACTIONS(1215), - [aux_sym_declare_statement_token2] = ACTIONS(1215), - [sym_float] = ACTIONS(1215), - [aux_sym_try_statement_token1] = ACTIONS(1215), - [aux_sym_goto_statement_token1] = ACTIONS(1215), - [aux_sym_continue_statement_token1] = ACTIONS(1215), - [aux_sym_break_statement_token1] = ACTIONS(1215), - [sym_integer] = ACTIONS(1215), - [aux_sym_return_statement_token1] = ACTIONS(1215), - [aux_sym_throw_expression_token1] = ACTIONS(1215), - [aux_sym_while_statement_token1] = ACTIONS(1215), - [aux_sym_while_statement_token2] = ACTIONS(1215), - [aux_sym_do_statement_token1] = ACTIONS(1215), - [aux_sym_for_statement_token1] = ACTIONS(1215), - [aux_sym_for_statement_token2] = ACTIONS(1215), - [aux_sym_foreach_statement_token1] = ACTIONS(1215), - [aux_sym_foreach_statement_token2] = ACTIONS(1215), - [aux_sym_if_statement_token1] = ACTIONS(1215), - [aux_sym_if_statement_token2] = ACTIONS(1215), - [aux_sym_else_if_clause_token1] = ACTIONS(1215), - [aux_sym_else_clause_token1] = ACTIONS(1215), - [aux_sym_match_expression_token1] = ACTIONS(1215), - [aux_sym_match_default_expression_token1] = ACTIONS(1215), - [aux_sym_switch_statement_token1] = ACTIONS(1215), - [aux_sym_switch_block_token1] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(1213), - [aux_sym_clone_expression_token1] = ACTIONS(1215), - [aux_sym_print_intrinsic_token1] = ACTIONS(1215), - [aux_sym_object_creation_expression_token1] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [sym_shell_command_expression] = ACTIONS(1213), - [aux_sym__list_destructing_token1] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1213), - [anon_sym_self] = ACTIONS(1215), - [anon_sym_parent] = ACTIONS(1215), - [anon_sym_POUND_LBRACK] = ACTIONS(1213), - [aux_sym_encapsed_string_token1] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(1213), - [aux_sym_string_token1] = ACTIONS(1213), - [sym_boolean] = ACTIONS(1215), - [sym_null] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1213), - [aux_sym_yield_expression_token1] = ACTIONS(1215), - [aux_sym_include_expression_token1] = ACTIONS(1215), - [aux_sym_include_once_expression_token1] = ACTIONS(1215), - [aux_sym_require_expression_token1] = ACTIONS(1215), - [aux_sym_require_once_expression_token1] = ACTIONS(1215), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1213), - }, - [520] = { - [sym_text_interpolation] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1217), - [sym_name] = ACTIONS(1219), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1217), - [aux_sym_function_static_declaration_token1] = ACTIONS(1219), - [aux_sym_global_declaration_token1] = ACTIONS(1219), - [aux_sym_namespace_definition_token1] = ACTIONS(1219), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1219), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1219), - [anon_sym_BSLASH] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_RBRACE] = ACTIONS(1217), - [aux_sym_trait_declaration_token1] = ACTIONS(1219), - [aux_sym_interface_declaration_token1] = ACTIONS(1219), - [aux_sym_enum_declaration_token1] = ACTIONS(1219), - [aux_sym_enum_case_token1] = ACTIONS(1219), - [aux_sym_class_declaration_token1] = ACTIONS(1219), - [aux_sym_final_modifier_token1] = ACTIONS(1219), - [aux_sym_abstract_modifier_token1] = ACTIONS(1219), - [aux_sym_visibility_modifier_token1] = ACTIONS(1219), - [aux_sym_visibility_modifier_token2] = ACTIONS(1219), - [aux_sym_visibility_modifier_token3] = ACTIONS(1219), - [aux_sym_arrow_function_token1] = ACTIONS(1219), - [anon_sym_LPAREN] = ACTIONS(1217), - [aux_sym_cast_type_token1] = ACTIONS(1219), - [aux_sym_echo_statement_token1] = ACTIONS(1219), - [anon_sym_unset] = ACTIONS(1219), - [aux_sym_declare_statement_token1] = ACTIONS(1219), - [aux_sym_declare_statement_token2] = ACTIONS(1219), - [sym_float] = ACTIONS(1219), - [aux_sym_try_statement_token1] = ACTIONS(1219), - [aux_sym_goto_statement_token1] = ACTIONS(1219), - [aux_sym_continue_statement_token1] = ACTIONS(1219), - [aux_sym_break_statement_token1] = ACTIONS(1219), - [sym_integer] = ACTIONS(1219), - [aux_sym_return_statement_token1] = ACTIONS(1219), - [aux_sym_throw_expression_token1] = ACTIONS(1219), - [aux_sym_while_statement_token1] = ACTIONS(1219), - [aux_sym_while_statement_token2] = ACTIONS(1219), - [aux_sym_do_statement_token1] = ACTIONS(1219), - [aux_sym_for_statement_token1] = ACTIONS(1219), - [aux_sym_for_statement_token2] = ACTIONS(1219), - [aux_sym_foreach_statement_token1] = ACTIONS(1219), - [aux_sym_foreach_statement_token2] = ACTIONS(1219), - [aux_sym_if_statement_token1] = ACTIONS(1219), - [aux_sym_if_statement_token2] = ACTIONS(1219), - [aux_sym_else_if_clause_token1] = ACTIONS(1219), - [aux_sym_else_clause_token1] = ACTIONS(1219), - [aux_sym_match_expression_token1] = ACTIONS(1219), - [aux_sym_match_default_expression_token1] = ACTIONS(1219), - [aux_sym_switch_statement_token1] = ACTIONS(1219), - [aux_sym_switch_block_token1] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1217), - [aux_sym_clone_expression_token1] = ACTIONS(1219), - [aux_sym_print_intrinsic_token1] = ACTIONS(1219), - [aux_sym_object_creation_expression_token1] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1217), - [sym_shell_command_expression] = ACTIONS(1217), - [aux_sym__list_destructing_token1] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_self] = ACTIONS(1219), - [anon_sym_parent] = ACTIONS(1219), - [anon_sym_POUND_LBRACK] = ACTIONS(1217), - [aux_sym_encapsed_string_token1] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [aux_sym_string_token1] = ACTIONS(1217), - [sym_boolean] = ACTIONS(1219), - [sym_null] = ACTIONS(1219), - [anon_sym_DOLLAR] = ACTIONS(1217), - [aux_sym_yield_expression_token1] = ACTIONS(1219), - [aux_sym_include_expression_token1] = ACTIONS(1219), - [aux_sym_include_once_expression_token1] = ACTIONS(1219), - [aux_sym_require_expression_token1] = ACTIONS(1219), - [aux_sym_require_once_expression_token1] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1217), - }, - [521] = { - [sym_text_interpolation] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1221), - [sym_name] = ACTIONS(1223), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1221), - [aux_sym_function_static_declaration_token1] = ACTIONS(1223), - [aux_sym_global_declaration_token1] = ACTIONS(1223), - [aux_sym_namespace_definition_token1] = ACTIONS(1223), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1223), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1223), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1223), - [anon_sym_BSLASH] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [aux_sym_trait_declaration_token1] = ACTIONS(1223), - [aux_sym_interface_declaration_token1] = ACTIONS(1223), - [aux_sym_enum_declaration_token1] = ACTIONS(1223), - [aux_sym_enum_case_token1] = ACTIONS(1223), - [aux_sym_class_declaration_token1] = ACTIONS(1223), - [aux_sym_final_modifier_token1] = ACTIONS(1223), - [aux_sym_abstract_modifier_token1] = ACTIONS(1223), - [aux_sym_visibility_modifier_token1] = ACTIONS(1223), - [aux_sym_visibility_modifier_token2] = ACTIONS(1223), - [aux_sym_visibility_modifier_token3] = ACTIONS(1223), - [aux_sym_arrow_function_token1] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1221), - [aux_sym_cast_type_token1] = ACTIONS(1223), - [aux_sym_echo_statement_token1] = ACTIONS(1223), - [anon_sym_unset] = ACTIONS(1223), - [aux_sym_declare_statement_token1] = ACTIONS(1223), - [aux_sym_declare_statement_token2] = ACTIONS(1223), - [sym_float] = ACTIONS(1223), - [aux_sym_try_statement_token1] = ACTIONS(1223), - [aux_sym_goto_statement_token1] = ACTIONS(1223), - [aux_sym_continue_statement_token1] = ACTIONS(1223), - [aux_sym_break_statement_token1] = ACTIONS(1223), - [sym_integer] = ACTIONS(1223), - [aux_sym_return_statement_token1] = ACTIONS(1223), - [aux_sym_throw_expression_token1] = ACTIONS(1223), - [aux_sym_while_statement_token1] = ACTIONS(1223), - [aux_sym_while_statement_token2] = ACTIONS(1223), - [aux_sym_do_statement_token1] = ACTIONS(1223), - [aux_sym_for_statement_token1] = ACTIONS(1223), - [aux_sym_for_statement_token2] = ACTIONS(1223), - [aux_sym_foreach_statement_token1] = ACTIONS(1223), - [aux_sym_foreach_statement_token2] = ACTIONS(1223), - [aux_sym_if_statement_token1] = ACTIONS(1223), - [aux_sym_if_statement_token2] = ACTIONS(1223), - [aux_sym_else_if_clause_token1] = ACTIONS(1223), - [aux_sym_else_clause_token1] = ACTIONS(1223), - [aux_sym_match_expression_token1] = ACTIONS(1223), - [aux_sym_match_default_expression_token1] = ACTIONS(1223), - [aux_sym_switch_statement_token1] = ACTIONS(1223), - [aux_sym_switch_block_token1] = ACTIONS(1223), - [anon_sym_AT] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [aux_sym_clone_expression_token1] = ACTIONS(1223), - [aux_sym_print_intrinsic_token1] = ACTIONS(1223), - [aux_sym_object_creation_expression_token1] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [sym_shell_command_expression] = ACTIONS(1221), - [aux_sym__list_destructing_token1] = ACTIONS(1223), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_self] = ACTIONS(1223), - [anon_sym_parent] = ACTIONS(1223), - [anon_sym_POUND_LBRACK] = ACTIONS(1221), - [aux_sym_encapsed_string_token1] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [aux_sym_string_token1] = ACTIONS(1221), - [sym_boolean] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(1221), - [aux_sym_yield_expression_token1] = ACTIONS(1223), - [aux_sym_include_expression_token1] = ACTIONS(1223), - [aux_sym_include_once_expression_token1] = ACTIONS(1223), - [aux_sym_require_expression_token1] = ACTIONS(1223), - [aux_sym_require_once_expression_token1] = ACTIONS(1223), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1221), - }, - [522] = { - [sym_text_interpolation] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1217), - [sym_name] = ACTIONS(1219), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1217), - [aux_sym_function_static_declaration_token1] = ACTIONS(1219), - [aux_sym_global_declaration_token1] = ACTIONS(1219), - [aux_sym_namespace_definition_token1] = ACTIONS(1219), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1219), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1219), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1219), - [anon_sym_BSLASH] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_RBRACE] = ACTIONS(1217), - [aux_sym_trait_declaration_token1] = ACTIONS(1219), - [aux_sym_interface_declaration_token1] = ACTIONS(1219), - [aux_sym_enum_declaration_token1] = ACTIONS(1219), - [aux_sym_enum_case_token1] = ACTIONS(1219), - [aux_sym_class_declaration_token1] = ACTIONS(1219), - [aux_sym_final_modifier_token1] = ACTIONS(1219), - [aux_sym_abstract_modifier_token1] = ACTIONS(1219), - [aux_sym_visibility_modifier_token1] = ACTIONS(1219), - [aux_sym_visibility_modifier_token2] = ACTIONS(1219), - [aux_sym_visibility_modifier_token3] = ACTIONS(1219), - [aux_sym_arrow_function_token1] = ACTIONS(1219), - [anon_sym_LPAREN] = ACTIONS(1217), - [aux_sym_cast_type_token1] = ACTIONS(1219), - [aux_sym_echo_statement_token1] = ACTIONS(1219), - [anon_sym_unset] = ACTIONS(1219), - [aux_sym_declare_statement_token1] = ACTIONS(1219), - [aux_sym_declare_statement_token2] = ACTIONS(1219), - [sym_float] = ACTIONS(1219), - [aux_sym_try_statement_token1] = ACTIONS(1219), - [aux_sym_goto_statement_token1] = ACTIONS(1219), - [aux_sym_continue_statement_token1] = ACTIONS(1219), - [aux_sym_break_statement_token1] = ACTIONS(1219), - [sym_integer] = ACTIONS(1219), - [aux_sym_return_statement_token1] = ACTIONS(1219), - [aux_sym_throw_expression_token1] = ACTIONS(1219), - [aux_sym_while_statement_token1] = ACTIONS(1219), - [aux_sym_while_statement_token2] = ACTIONS(1219), - [aux_sym_do_statement_token1] = ACTIONS(1219), - [aux_sym_for_statement_token1] = ACTIONS(1219), - [aux_sym_for_statement_token2] = ACTIONS(1219), - [aux_sym_foreach_statement_token1] = ACTIONS(1219), - [aux_sym_foreach_statement_token2] = ACTIONS(1219), - [aux_sym_if_statement_token1] = ACTIONS(1219), - [aux_sym_if_statement_token2] = ACTIONS(1219), - [aux_sym_else_if_clause_token1] = ACTIONS(1219), - [aux_sym_else_clause_token1] = ACTIONS(1219), - [aux_sym_match_expression_token1] = ACTIONS(1219), - [aux_sym_match_default_expression_token1] = ACTIONS(1219), - [aux_sym_switch_statement_token1] = ACTIONS(1219), - [aux_sym_switch_block_token1] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1217), - [aux_sym_clone_expression_token1] = ACTIONS(1219), - [aux_sym_print_intrinsic_token1] = ACTIONS(1219), - [aux_sym_object_creation_expression_token1] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1217), - [sym_shell_command_expression] = ACTIONS(1217), - [aux_sym__list_destructing_token1] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_self] = ACTIONS(1219), - [anon_sym_parent] = ACTIONS(1219), - [anon_sym_POUND_LBRACK] = ACTIONS(1217), - [aux_sym_encapsed_string_token1] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [aux_sym_string_token1] = ACTIONS(1217), - [sym_boolean] = ACTIONS(1219), - [sym_null] = ACTIONS(1219), - [anon_sym_DOLLAR] = ACTIONS(1217), - [aux_sym_yield_expression_token1] = ACTIONS(1219), - [aux_sym_include_expression_token1] = ACTIONS(1219), - [aux_sym_include_once_expression_token1] = ACTIONS(1219), - [aux_sym_require_expression_token1] = ACTIONS(1219), - [aux_sym_require_once_expression_token1] = ACTIONS(1219), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1217), - }, - [523] = { - [sym_text_interpolation] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_name] = ACTIONS(1227), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1225), - [aux_sym_function_static_declaration_token1] = ACTIONS(1227), - [aux_sym_global_declaration_token1] = ACTIONS(1227), - [aux_sym_namespace_definition_token1] = ACTIONS(1227), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1227), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1227), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1227), - [anon_sym_BSLASH] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [aux_sym_trait_declaration_token1] = ACTIONS(1227), - [aux_sym_interface_declaration_token1] = ACTIONS(1227), - [aux_sym_enum_declaration_token1] = ACTIONS(1227), - [aux_sym_enum_case_token1] = ACTIONS(1227), - [aux_sym_class_declaration_token1] = ACTIONS(1227), - [aux_sym_final_modifier_token1] = ACTIONS(1227), - [aux_sym_abstract_modifier_token1] = ACTIONS(1227), - [aux_sym_visibility_modifier_token1] = ACTIONS(1227), - [aux_sym_visibility_modifier_token2] = ACTIONS(1227), - [aux_sym_visibility_modifier_token3] = ACTIONS(1227), - [aux_sym_arrow_function_token1] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1225), - [aux_sym_cast_type_token1] = ACTIONS(1227), - [aux_sym_echo_statement_token1] = ACTIONS(1227), - [anon_sym_unset] = ACTIONS(1227), - [aux_sym_declare_statement_token1] = ACTIONS(1227), - [aux_sym_declare_statement_token2] = ACTIONS(1227), - [sym_float] = ACTIONS(1227), - [aux_sym_try_statement_token1] = ACTIONS(1227), - [aux_sym_goto_statement_token1] = ACTIONS(1227), - [aux_sym_continue_statement_token1] = ACTIONS(1227), - [aux_sym_break_statement_token1] = ACTIONS(1227), - [sym_integer] = ACTIONS(1227), - [aux_sym_return_statement_token1] = ACTIONS(1227), - [aux_sym_throw_expression_token1] = ACTIONS(1227), - [aux_sym_while_statement_token1] = ACTIONS(1227), - [aux_sym_while_statement_token2] = ACTIONS(1227), - [aux_sym_do_statement_token1] = ACTIONS(1227), - [aux_sym_for_statement_token1] = ACTIONS(1227), - [aux_sym_for_statement_token2] = ACTIONS(1227), - [aux_sym_foreach_statement_token1] = ACTIONS(1227), - [aux_sym_foreach_statement_token2] = ACTIONS(1227), - [aux_sym_if_statement_token1] = ACTIONS(1227), - [aux_sym_if_statement_token2] = ACTIONS(1227), - [aux_sym_else_if_clause_token1] = ACTIONS(1227), - [aux_sym_else_clause_token1] = ACTIONS(1227), - [aux_sym_match_expression_token1] = ACTIONS(1227), - [aux_sym_match_default_expression_token1] = ACTIONS(1227), - [aux_sym_switch_statement_token1] = ACTIONS(1227), - [aux_sym_switch_block_token1] = ACTIONS(1227), - [anon_sym_AT] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [aux_sym_clone_expression_token1] = ACTIONS(1227), - [aux_sym_print_intrinsic_token1] = ACTIONS(1227), - [aux_sym_object_creation_expression_token1] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [sym_shell_command_expression] = ACTIONS(1225), - [aux_sym__list_destructing_token1] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_parent] = ACTIONS(1227), - [anon_sym_POUND_LBRACK] = ACTIONS(1225), - [aux_sym_encapsed_string_token1] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [aux_sym_string_token1] = ACTIONS(1225), - [sym_boolean] = ACTIONS(1227), - [sym_null] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1225), - [aux_sym_yield_expression_token1] = ACTIONS(1227), - [aux_sym_include_expression_token1] = ACTIONS(1227), - [aux_sym_include_once_expression_token1] = ACTIONS(1227), - [aux_sym_require_expression_token1] = ACTIONS(1227), - [aux_sym_require_once_expression_token1] = ACTIONS(1227), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1225), - }, - [524] = { - [sym_text_interpolation] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1229), - [sym_name] = ACTIONS(1231), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1229), - [aux_sym_function_static_declaration_token1] = ACTIONS(1231), - [aux_sym_global_declaration_token1] = ACTIONS(1231), - [aux_sym_namespace_definition_token1] = ACTIONS(1231), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1231), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1231), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1231), - [anon_sym_BSLASH] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [aux_sym_trait_declaration_token1] = ACTIONS(1231), - [aux_sym_interface_declaration_token1] = ACTIONS(1231), - [aux_sym_enum_declaration_token1] = ACTIONS(1231), - [aux_sym_enum_case_token1] = ACTIONS(1231), - [aux_sym_class_declaration_token1] = ACTIONS(1231), - [aux_sym_final_modifier_token1] = ACTIONS(1231), - [aux_sym_abstract_modifier_token1] = ACTIONS(1231), - [aux_sym_visibility_modifier_token1] = ACTIONS(1231), - [aux_sym_visibility_modifier_token2] = ACTIONS(1231), - [aux_sym_visibility_modifier_token3] = ACTIONS(1231), - [aux_sym_arrow_function_token1] = ACTIONS(1231), - [anon_sym_LPAREN] = ACTIONS(1229), - [aux_sym_cast_type_token1] = ACTIONS(1231), - [aux_sym_echo_statement_token1] = ACTIONS(1231), - [anon_sym_unset] = ACTIONS(1231), - [aux_sym_declare_statement_token1] = ACTIONS(1231), - [aux_sym_declare_statement_token2] = ACTIONS(1231), - [sym_float] = ACTIONS(1231), - [aux_sym_try_statement_token1] = ACTIONS(1231), - [aux_sym_goto_statement_token1] = ACTIONS(1231), - [aux_sym_continue_statement_token1] = ACTIONS(1231), - [aux_sym_break_statement_token1] = ACTIONS(1231), - [sym_integer] = ACTIONS(1231), - [aux_sym_return_statement_token1] = ACTIONS(1231), - [aux_sym_throw_expression_token1] = ACTIONS(1231), - [aux_sym_while_statement_token1] = ACTIONS(1231), - [aux_sym_while_statement_token2] = ACTIONS(1231), - [aux_sym_do_statement_token1] = ACTIONS(1231), - [aux_sym_for_statement_token1] = ACTIONS(1231), - [aux_sym_for_statement_token2] = ACTIONS(1231), - [aux_sym_foreach_statement_token1] = ACTIONS(1231), - [aux_sym_foreach_statement_token2] = ACTIONS(1231), - [aux_sym_if_statement_token1] = ACTIONS(1231), - [aux_sym_if_statement_token2] = ACTIONS(1231), - [aux_sym_else_if_clause_token1] = ACTIONS(1231), - [aux_sym_else_clause_token1] = ACTIONS(1231), - [aux_sym_match_expression_token1] = ACTIONS(1231), - [aux_sym_match_default_expression_token1] = ACTIONS(1231), - [aux_sym_switch_statement_token1] = ACTIONS(1231), - [aux_sym_switch_block_token1] = ACTIONS(1231), - [anon_sym_AT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [aux_sym_clone_expression_token1] = ACTIONS(1231), - [aux_sym_print_intrinsic_token1] = ACTIONS(1231), - [aux_sym_object_creation_expression_token1] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1229), - [anon_sym_DASH_DASH] = ACTIONS(1229), - [sym_shell_command_expression] = ACTIONS(1229), - [aux_sym__list_destructing_token1] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_self] = ACTIONS(1231), - [anon_sym_parent] = ACTIONS(1231), - [anon_sym_POUND_LBRACK] = ACTIONS(1229), - [aux_sym_encapsed_string_token1] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1229), - [aux_sym_string_token1] = ACTIONS(1229), - [sym_boolean] = ACTIONS(1231), - [sym_null] = ACTIONS(1231), - [anon_sym_DOLLAR] = ACTIONS(1229), - [aux_sym_yield_expression_token1] = ACTIONS(1231), - [aux_sym_include_expression_token1] = ACTIONS(1231), - [aux_sym_include_once_expression_token1] = ACTIONS(1231), - [aux_sym_require_expression_token1] = ACTIONS(1231), - [aux_sym_require_once_expression_token1] = ACTIONS(1231), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1229), - }, - [525] = { - [sym_text_interpolation] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_name] = ACTIONS(1235), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1233), - [aux_sym_function_static_declaration_token1] = ACTIONS(1235), - [aux_sym_global_declaration_token1] = ACTIONS(1235), - [aux_sym_namespace_definition_token1] = ACTIONS(1235), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1235), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1235), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1235), - [anon_sym_BSLASH] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1233), - [aux_sym_trait_declaration_token1] = ACTIONS(1235), - [aux_sym_interface_declaration_token1] = ACTIONS(1235), - [aux_sym_enum_declaration_token1] = ACTIONS(1235), - [aux_sym_enum_case_token1] = ACTIONS(1235), - [aux_sym_class_declaration_token1] = ACTIONS(1235), - [aux_sym_final_modifier_token1] = ACTIONS(1235), - [aux_sym_abstract_modifier_token1] = ACTIONS(1235), - [aux_sym_visibility_modifier_token1] = ACTIONS(1235), - [aux_sym_visibility_modifier_token2] = ACTIONS(1235), - [aux_sym_visibility_modifier_token3] = ACTIONS(1235), - [aux_sym_arrow_function_token1] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1233), - [aux_sym_cast_type_token1] = ACTIONS(1235), - [aux_sym_echo_statement_token1] = ACTIONS(1235), - [anon_sym_unset] = ACTIONS(1235), - [aux_sym_declare_statement_token1] = ACTIONS(1235), - [aux_sym_declare_statement_token2] = ACTIONS(1235), - [sym_float] = ACTIONS(1235), - [aux_sym_try_statement_token1] = ACTIONS(1235), - [aux_sym_goto_statement_token1] = ACTIONS(1235), - [aux_sym_continue_statement_token1] = ACTIONS(1235), - [aux_sym_break_statement_token1] = ACTIONS(1235), - [sym_integer] = ACTIONS(1235), - [aux_sym_return_statement_token1] = ACTIONS(1235), - [aux_sym_throw_expression_token1] = ACTIONS(1235), - [aux_sym_while_statement_token1] = ACTIONS(1235), - [aux_sym_while_statement_token2] = ACTIONS(1235), - [aux_sym_do_statement_token1] = ACTIONS(1235), - [aux_sym_for_statement_token1] = ACTIONS(1235), - [aux_sym_for_statement_token2] = ACTIONS(1235), - [aux_sym_foreach_statement_token1] = ACTIONS(1235), - [aux_sym_foreach_statement_token2] = ACTIONS(1235), - [aux_sym_if_statement_token1] = ACTIONS(1235), - [aux_sym_if_statement_token2] = ACTIONS(1235), - [aux_sym_else_if_clause_token1] = ACTIONS(1235), - [aux_sym_else_clause_token1] = ACTIONS(1235), - [aux_sym_match_expression_token1] = ACTIONS(1235), - [aux_sym_match_default_expression_token1] = ACTIONS(1235), - [aux_sym_switch_statement_token1] = ACTIONS(1235), - [aux_sym_switch_block_token1] = ACTIONS(1235), - [anon_sym_AT] = ACTIONS(1233), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [aux_sym_clone_expression_token1] = ACTIONS(1235), - [aux_sym_print_intrinsic_token1] = ACTIONS(1235), - [aux_sym_object_creation_expression_token1] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [sym_shell_command_expression] = ACTIONS(1233), - [aux_sym__list_destructing_token1] = ACTIONS(1235), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_self] = ACTIONS(1235), - [anon_sym_parent] = ACTIONS(1235), - [anon_sym_POUND_LBRACK] = ACTIONS(1233), - [aux_sym_encapsed_string_token1] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [aux_sym_string_token1] = ACTIONS(1233), - [sym_boolean] = ACTIONS(1235), - [sym_null] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(1233), - [aux_sym_yield_expression_token1] = ACTIONS(1235), - [aux_sym_include_expression_token1] = ACTIONS(1235), - [aux_sym_include_once_expression_token1] = ACTIONS(1235), - [aux_sym_require_expression_token1] = ACTIONS(1235), - [aux_sym_require_once_expression_token1] = ACTIONS(1235), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1233), - }, - [526] = { - [sym_text_interpolation] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_name] = ACTIONS(1239), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1237), - [aux_sym_function_static_declaration_token1] = ACTIONS(1239), - [aux_sym_global_declaration_token1] = ACTIONS(1239), - [aux_sym_namespace_definition_token1] = ACTIONS(1239), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1239), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1239), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1239), - [anon_sym_BSLASH] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [aux_sym_trait_declaration_token1] = ACTIONS(1239), - [aux_sym_interface_declaration_token1] = ACTIONS(1239), - [aux_sym_enum_declaration_token1] = ACTIONS(1239), - [aux_sym_enum_case_token1] = ACTIONS(1239), - [aux_sym_class_declaration_token1] = ACTIONS(1239), - [aux_sym_final_modifier_token1] = ACTIONS(1239), - [aux_sym_abstract_modifier_token1] = ACTIONS(1239), - [aux_sym_visibility_modifier_token1] = ACTIONS(1239), - [aux_sym_visibility_modifier_token2] = ACTIONS(1239), - [aux_sym_visibility_modifier_token3] = ACTIONS(1239), - [aux_sym_arrow_function_token1] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(1237), - [aux_sym_cast_type_token1] = ACTIONS(1239), - [aux_sym_echo_statement_token1] = ACTIONS(1239), - [anon_sym_unset] = ACTIONS(1239), - [aux_sym_declare_statement_token1] = ACTIONS(1239), - [aux_sym_declare_statement_token2] = ACTIONS(1239), - [sym_float] = ACTIONS(1239), - [aux_sym_try_statement_token1] = ACTIONS(1239), - [aux_sym_goto_statement_token1] = ACTIONS(1239), - [aux_sym_continue_statement_token1] = ACTIONS(1239), - [aux_sym_break_statement_token1] = ACTIONS(1239), - [sym_integer] = ACTIONS(1239), - [aux_sym_return_statement_token1] = ACTIONS(1239), - [aux_sym_throw_expression_token1] = ACTIONS(1239), - [aux_sym_while_statement_token1] = ACTIONS(1239), - [aux_sym_while_statement_token2] = ACTIONS(1239), - [aux_sym_do_statement_token1] = ACTIONS(1239), - [aux_sym_for_statement_token1] = ACTIONS(1239), - [aux_sym_for_statement_token2] = ACTIONS(1239), - [aux_sym_foreach_statement_token1] = ACTIONS(1239), - [aux_sym_foreach_statement_token2] = ACTIONS(1239), - [aux_sym_if_statement_token1] = ACTIONS(1239), - [aux_sym_if_statement_token2] = ACTIONS(1239), - [aux_sym_else_if_clause_token1] = ACTIONS(1239), - [aux_sym_else_clause_token1] = ACTIONS(1239), - [aux_sym_match_expression_token1] = ACTIONS(1239), - [aux_sym_match_default_expression_token1] = ACTIONS(1239), - [aux_sym_switch_statement_token1] = ACTIONS(1239), - [aux_sym_switch_block_token1] = ACTIONS(1239), - [anon_sym_AT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [aux_sym_clone_expression_token1] = ACTIONS(1239), - [aux_sym_print_intrinsic_token1] = ACTIONS(1239), - [aux_sym_object_creation_expression_token1] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1237), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [sym_shell_command_expression] = ACTIONS(1237), - [aux_sym__list_destructing_token1] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_self] = ACTIONS(1239), - [anon_sym_parent] = ACTIONS(1239), - [anon_sym_POUND_LBRACK] = ACTIONS(1237), - [aux_sym_encapsed_string_token1] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [anon_sym_SQUOTE] = ACTIONS(1237), - [aux_sym_string_token1] = ACTIONS(1237), - [sym_boolean] = ACTIONS(1239), - [sym_null] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1237), - [aux_sym_yield_expression_token1] = ACTIONS(1239), - [aux_sym_include_expression_token1] = ACTIONS(1239), - [aux_sym_include_once_expression_token1] = ACTIONS(1239), - [aux_sym_require_expression_token1] = ACTIONS(1239), - [aux_sym_require_once_expression_token1] = ACTIONS(1239), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1237), - }, - [527] = { - [sym_text_interpolation] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_name] = ACTIONS(1243), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1241), - [aux_sym_function_static_declaration_token1] = ACTIONS(1243), - [aux_sym_global_declaration_token1] = ACTIONS(1243), - [aux_sym_namespace_definition_token1] = ACTIONS(1243), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1243), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1243), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1243), - [anon_sym_BSLASH] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [aux_sym_trait_declaration_token1] = ACTIONS(1243), - [aux_sym_interface_declaration_token1] = ACTIONS(1243), - [aux_sym_enum_declaration_token1] = ACTIONS(1243), - [aux_sym_enum_case_token1] = ACTIONS(1243), - [aux_sym_class_declaration_token1] = ACTIONS(1243), - [aux_sym_final_modifier_token1] = ACTIONS(1243), - [aux_sym_abstract_modifier_token1] = ACTIONS(1243), - [aux_sym_visibility_modifier_token1] = ACTIONS(1243), - [aux_sym_visibility_modifier_token2] = ACTIONS(1243), - [aux_sym_visibility_modifier_token3] = ACTIONS(1243), - [aux_sym_arrow_function_token1] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1241), - [aux_sym_cast_type_token1] = ACTIONS(1243), - [aux_sym_echo_statement_token1] = ACTIONS(1243), - [anon_sym_unset] = ACTIONS(1243), - [aux_sym_declare_statement_token1] = ACTIONS(1243), - [aux_sym_declare_statement_token2] = ACTIONS(1243), - [sym_float] = ACTIONS(1243), - [aux_sym_try_statement_token1] = ACTIONS(1243), - [aux_sym_goto_statement_token1] = ACTIONS(1243), - [aux_sym_continue_statement_token1] = ACTIONS(1243), - [aux_sym_break_statement_token1] = ACTIONS(1243), - [sym_integer] = ACTIONS(1243), - [aux_sym_return_statement_token1] = ACTIONS(1243), - [aux_sym_throw_expression_token1] = ACTIONS(1243), - [aux_sym_while_statement_token1] = ACTIONS(1243), - [aux_sym_while_statement_token2] = ACTIONS(1243), - [aux_sym_do_statement_token1] = ACTIONS(1243), - [aux_sym_for_statement_token1] = ACTIONS(1243), - [aux_sym_for_statement_token2] = ACTIONS(1243), - [aux_sym_foreach_statement_token1] = ACTIONS(1243), - [aux_sym_foreach_statement_token2] = ACTIONS(1243), - [aux_sym_if_statement_token1] = ACTIONS(1243), - [aux_sym_if_statement_token2] = ACTIONS(1243), - [aux_sym_else_if_clause_token1] = ACTIONS(1243), - [aux_sym_else_clause_token1] = ACTIONS(1243), - [aux_sym_match_expression_token1] = ACTIONS(1243), - [aux_sym_match_default_expression_token1] = ACTIONS(1243), - [aux_sym_switch_statement_token1] = ACTIONS(1243), - [aux_sym_switch_block_token1] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [aux_sym_clone_expression_token1] = ACTIONS(1243), - [aux_sym_print_intrinsic_token1] = ACTIONS(1243), - [aux_sym_object_creation_expression_token1] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [sym_shell_command_expression] = ACTIONS(1241), - [aux_sym__list_destructing_token1] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_self] = ACTIONS(1243), - [anon_sym_parent] = ACTIONS(1243), - [anon_sym_POUND_LBRACK] = ACTIONS(1241), - [aux_sym_encapsed_string_token1] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1241), - [sym_boolean] = ACTIONS(1243), - [sym_null] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1241), - [aux_sym_yield_expression_token1] = ACTIONS(1243), - [aux_sym_include_expression_token1] = ACTIONS(1243), - [aux_sym_include_once_expression_token1] = ACTIONS(1243), - [aux_sym_require_expression_token1] = ACTIONS(1243), - [aux_sym_require_once_expression_token1] = ACTIONS(1243), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1241), - }, - [528] = { - [sym_text_interpolation] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_name] = ACTIONS(1247), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1245), - [aux_sym_function_static_declaration_token1] = ACTIONS(1247), - [aux_sym_global_declaration_token1] = ACTIONS(1247), - [aux_sym_namespace_definition_token1] = ACTIONS(1247), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1247), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1247), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1247), - [anon_sym_BSLASH] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [aux_sym_trait_declaration_token1] = ACTIONS(1247), - [aux_sym_interface_declaration_token1] = ACTIONS(1247), - [aux_sym_enum_declaration_token1] = ACTIONS(1247), - [aux_sym_enum_case_token1] = ACTIONS(1247), - [aux_sym_class_declaration_token1] = ACTIONS(1247), - [aux_sym_final_modifier_token1] = ACTIONS(1247), - [aux_sym_abstract_modifier_token1] = ACTIONS(1247), - [aux_sym_visibility_modifier_token1] = ACTIONS(1247), - [aux_sym_visibility_modifier_token2] = ACTIONS(1247), - [aux_sym_visibility_modifier_token3] = ACTIONS(1247), - [aux_sym_arrow_function_token1] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1245), - [aux_sym_cast_type_token1] = ACTIONS(1247), - [aux_sym_echo_statement_token1] = ACTIONS(1247), - [anon_sym_unset] = ACTIONS(1247), - [aux_sym_declare_statement_token1] = ACTIONS(1247), - [aux_sym_declare_statement_token2] = ACTIONS(1247), - [sym_float] = ACTIONS(1247), - [aux_sym_try_statement_token1] = ACTIONS(1247), - [aux_sym_goto_statement_token1] = ACTIONS(1247), - [aux_sym_continue_statement_token1] = ACTIONS(1247), - [aux_sym_break_statement_token1] = ACTIONS(1247), - [sym_integer] = ACTIONS(1247), - [aux_sym_return_statement_token1] = ACTIONS(1247), - [aux_sym_throw_expression_token1] = ACTIONS(1247), - [aux_sym_while_statement_token1] = ACTIONS(1247), - [aux_sym_while_statement_token2] = ACTIONS(1247), - [aux_sym_do_statement_token1] = ACTIONS(1247), - [aux_sym_for_statement_token1] = ACTIONS(1247), - [aux_sym_for_statement_token2] = ACTIONS(1247), - [aux_sym_foreach_statement_token1] = ACTIONS(1247), - [aux_sym_foreach_statement_token2] = ACTIONS(1247), - [aux_sym_if_statement_token1] = ACTIONS(1247), - [aux_sym_if_statement_token2] = ACTIONS(1247), - [aux_sym_else_if_clause_token1] = ACTIONS(1247), - [aux_sym_else_clause_token1] = ACTIONS(1247), - [aux_sym_match_expression_token1] = ACTIONS(1247), - [aux_sym_match_default_expression_token1] = ACTIONS(1247), - [aux_sym_switch_statement_token1] = ACTIONS(1247), - [aux_sym_switch_block_token1] = ACTIONS(1247), - [anon_sym_AT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [aux_sym_clone_expression_token1] = ACTIONS(1247), - [aux_sym_print_intrinsic_token1] = ACTIONS(1247), - [aux_sym_object_creation_expression_token1] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1245), - [sym_shell_command_expression] = ACTIONS(1245), - [aux_sym__list_destructing_token1] = ACTIONS(1247), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_self] = ACTIONS(1247), - [anon_sym_parent] = ACTIONS(1247), - [anon_sym_POUND_LBRACK] = ACTIONS(1245), - [aux_sym_encapsed_string_token1] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1245), - [aux_sym_string_token1] = ACTIONS(1245), - [sym_boolean] = ACTIONS(1247), - [sym_null] = ACTIONS(1247), - [anon_sym_DOLLAR] = ACTIONS(1245), - [aux_sym_yield_expression_token1] = ACTIONS(1247), - [aux_sym_include_expression_token1] = ACTIONS(1247), - [aux_sym_include_once_expression_token1] = ACTIONS(1247), - [aux_sym_require_expression_token1] = ACTIONS(1247), - [aux_sym_require_once_expression_token1] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1245), - }, - [529] = { - [sym_text_interpolation] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_name] = ACTIONS(1251), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1249), - [aux_sym_function_static_declaration_token1] = ACTIONS(1251), - [aux_sym_global_declaration_token1] = ACTIONS(1251), - [aux_sym_namespace_definition_token1] = ACTIONS(1251), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1251), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1251), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1251), - [anon_sym_BSLASH] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [aux_sym_trait_declaration_token1] = ACTIONS(1251), - [aux_sym_interface_declaration_token1] = ACTIONS(1251), - [aux_sym_enum_declaration_token1] = ACTIONS(1251), - [aux_sym_enum_case_token1] = ACTIONS(1251), - [aux_sym_class_declaration_token1] = ACTIONS(1251), - [aux_sym_final_modifier_token1] = ACTIONS(1251), - [aux_sym_abstract_modifier_token1] = ACTIONS(1251), - [aux_sym_visibility_modifier_token1] = ACTIONS(1251), - [aux_sym_visibility_modifier_token2] = ACTIONS(1251), - [aux_sym_visibility_modifier_token3] = ACTIONS(1251), - [aux_sym_arrow_function_token1] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1249), - [aux_sym_cast_type_token1] = ACTIONS(1251), - [aux_sym_echo_statement_token1] = ACTIONS(1251), - [anon_sym_unset] = ACTIONS(1251), - [aux_sym_declare_statement_token1] = ACTIONS(1251), - [aux_sym_declare_statement_token2] = ACTIONS(1251), - [sym_float] = ACTIONS(1251), - [aux_sym_try_statement_token1] = ACTIONS(1251), - [aux_sym_goto_statement_token1] = ACTIONS(1251), - [aux_sym_continue_statement_token1] = ACTIONS(1251), - [aux_sym_break_statement_token1] = ACTIONS(1251), - [sym_integer] = ACTIONS(1251), - [aux_sym_return_statement_token1] = ACTIONS(1251), - [aux_sym_throw_expression_token1] = ACTIONS(1251), - [aux_sym_while_statement_token1] = ACTIONS(1251), - [aux_sym_while_statement_token2] = ACTIONS(1251), - [aux_sym_do_statement_token1] = ACTIONS(1251), - [aux_sym_for_statement_token1] = ACTIONS(1251), - [aux_sym_for_statement_token2] = ACTIONS(1251), - [aux_sym_foreach_statement_token1] = ACTIONS(1251), - [aux_sym_foreach_statement_token2] = ACTIONS(1251), - [aux_sym_if_statement_token1] = ACTIONS(1251), - [aux_sym_if_statement_token2] = ACTIONS(1251), - [aux_sym_else_if_clause_token1] = ACTIONS(1251), - [aux_sym_else_clause_token1] = ACTIONS(1251), - [aux_sym_match_expression_token1] = ACTIONS(1251), - [aux_sym_match_default_expression_token1] = ACTIONS(1251), - [aux_sym_switch_statement_token1] = ACTIONS(1251), - [aux_sym_switch_block_token1] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [aux_sym_clone_expression_token1] = ACTIONS(1251), - [aux_sym_print_intrinsic_token1] = ACTIONS(1251), - [aux_sym_object_creation_expression_token1] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [sym_shell_command_expression] = ACTIONS(1249), - [aux_sym__list_destructing_token1] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_self] = ACTIONS(1251), - [anon_sym_parent] = ACTIONS(1251), - [anon_sym_POUND_LBRACK] = ACTIONS(1249), - [aux_sym_encapsed_string_token1] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1249), - [aux_sym_string_token1] = ACTIONS(1249), - [sym_boolean] = ACTIONS(1251), - [sym_null] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1249), - [aux_sym_yield_expression_token1] = ACTIONS(1251), - [aux_sym_include_expression_token1] = ACTIONS(1251), - [aux_sym_include_once_expression_token1] = ACTIONS(1251), - [aux_sym_require_expression_token1] = ACTIONS(1251), - [aux_sym_require_once_expression_token1] = ACTIONS(1251), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1249), - }, - [530] = { - [sym_text_interpolation] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_name] = ACTIONS(1251), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1249), - [aux_sym_function_static_declaration_token1] = ACTIONS(1251), - [aux_sym_global_declaration_token1] = ACTIONS(1251), - [aux_sym_namespace_definition_token1] = ACTIONS(1251), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1251), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1251), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1251), - [anon_sym_BSLASH] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [aux_sym_trait_declaration_token1] = ACTIONS(1251), - [aux_sym_interface_declaration_token1] = ACTIONS(1251), - [aux_sym_enum_declaration_token1] = ACTIONS(1251), - [aux_sym_enum_case_token1] = ACTIONS(1251), - [aux_sym_class_declaration_token1] = ACTIONS(1251), - [aux_sym_final_modifier_token1] = ACTIONS(1251), - [aux_sym_abstract_modifier_token1] = ACTIONS(1251), - [aux_sym_visibility_modifier_token1] = ACTIONS(1251), - [aux_sym_visibility_modifier_token2] = ACTIONS(1251), - [aux_sym_visibility_modifier_token3] = ACTIONS(1251), - [aux_sym_arrow_function_token1] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1249), - [aux_sym_cast_type_token1] = ACTIONS(1251), - [aux_sym_echo_statement_token1] = ACTIONS(1251), - [anon_sym_unset] = ACTIONS(1251), - [aux_sym_declare_statement_token1] = ACTIONS(1251), - [aux_sym_declare_statement_token2] = ACTIONS(1251), - [sym_float] = ACTIONS(1251), - [aux_sym_try_statement_token1] = ACTIONS(1251), - [aux_sym_goto_statement_token1] = ACTIONS(1251), - [aux_sym_continue_statement_token1] = ACTIONS(1251), - [aux_sym_break_statement_token1] = ACTIONS(1251), - [sym_integer] = ACTIONS(1251), - [aux_sym_return_statement_token1] = ACTIONS(1251), - [aux_sym_throw_expression_token1] = ACTIONS(1251), - [aux_sym_while_statement_token1] = ACTIONS(1251), - [aux_sym_while_statement_token2] = ACTIONS(1251), - [aux_sym_do_statement_token1] = ACTIONS(1251), - [aux_sym_for_statement_token1] = ACTIONS(1251), - [aux_sym_for_statement_token2] = ACTIONS(1251), - [aux_sym_foreach_statement_token1] = ACTIONS(1251), - [aux_sym_foreach_statement_token2] = ACTIONS(1251), - [aux_sym_if_statement_token1] = ACTIONS(1251), - [aux_sym_if_statement_token2] = ACTIONS(1251), - [aux_sym_else_if_clause_token1] = ACTIONS(1251), - [aux_sym_else_clause_token1] = ACTIONS(1251), - [aux_sym_match_expression_token1] = ACTIONS(1251), - [aux_sym_match_default_expression_token1] = ACTIONS(1251), - [aux_sym_switch_statement_token1] = ACTIONS(1251), - [aux_sym_switch_block_token1] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [aux_sym_clone_expression_token1] = ACTIONS(1251), - [aux_sym_print_intrinsic_token1] = ACTIONS(1251), - [aux_sym_object_creation_expression_token1] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [sym_shell_command_expression] = ACTIONS(1249), - [aux_sym__list_destructing_token1] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_self] = ACTIONS(1251), - [anon_sym_parent] = ACTIONS(1251), - [anon_sym_POUND_LBRACK] = ACTIONS(1249), - [aux_sym_encapsed_string_token1] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1249), - [aux_sym_string_token1] = ACTIONS(1249), - [sym_boolean] = ACTIONS(1251), - [sym_null] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1249), - [aux_sym_yield_expression_token1] = ACTIONS(1251), - [aux_sym_include_expression_token1] = ACTIONS(1251), - [aux_sym_include_once_expression_token1] = ACTIONS(1251), - [aux_sym_require_expression_token1] = ACTIONS(1251), - [aux_sym_require_once_expression_token1] = ACTIONS(1251), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1249), - }, - [531] = { - [sym_text_interpolation] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_name] = ACTIONS(1255), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1253), - [aux_sym_function_static_declaration_token1] = ACTIONS(1255), - [aux_sym_global_declaration_token1] = ACTIONS(1255), - [aux_sym_namespace_definition_token1] = ACTIONS(1255), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1255), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1255), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1255), - [anon_sym_BSLASH] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [aux_sym_trait_declaration_token1] = ACTIONS(1255), - [aux_sym_interface_declaration_token1] = ACTIONS(1255), - [aux_sym_enum_declaration_token1] = ACTIONS(1255), - [aux_sym_enum_case_token1] = ACTIONS(1255), - [aux_sym_class_declaration_token1] = ACTIONS(1255), - [aux_sym_final_modifier_token1] = ACTIONS(1255), - [aux_sym_abstract_modifier_token1] = ACTIONS(1255), - [aux_sym_visibility_modifier_token1] = ACTIONS(1255), - [aux_sym_visibility_modifier_token2] = ACTIONS(1255), - [aux_sym_visibility_modifier_token3] = ACTIONS(1255), - [aux_sym_arrow_function_token1] = ACTIONS(1255), - [anon_sym_LPAREN] = ACTIONS(1253), - [aux_sym_cast_type_token1] = ACTIONS(1255), - [aux_sym_echo_statement_token1] = ACTIONS(1255), - [anon_sym_unset] = ACTIONS(1255), - [aux_sym_declare_statement_token1] = ACTIONS(1255), - [aux_sym_declare_statement_token2] = ACTIONS(1255), - [sym_float] = ACTIONS(1255), - [aux_sym_try_statement_token1] = ACTIONS(1255), - [aux_sym_goto_statement_token1] = ACTIONS(1255), - [aux_sym_continue_statement_token1] = ACTIONS(1255), - [aux_sym_break_statement_token1] = ACTIONS(1255), - [sym_integer] = ACTIONS(1255), - [aux_sym_return_statement_token1] = ACTIONS(1255), - [aux_sym_throw_expression_token1] = ACTIONS(1255), - [aux_sym_while_statement_token1] = ACTIONS(1255), - [aux_sym_while_statement_token2] = ACTIONS(1255), - [aux_sym_do_statement_token1] = ACTIONS(1255), - [aux_sym_for_statement_token1] = ACTIONS(1255), - [aux_sym_for_statement_token2] = ACTIONS(1255), - [aux_sym_foreach_statement_token1] = ACTIONS(1255), - [aux_sym_foreach_statement_token2] = ACTIONS(1255), - [aux_sym_if_statement_token1] = ACTIONS(1255), - [aux_sym_if_statement_token2] = ACTIONS(1255), - [aux_sym_else_if_clause_token1] = ACTIONS(1255), - [aux_sym_else_clause_token1] = ACTIONS(1255), - [aux_sym_match_expression_token1] = ACTIONS(1255), - [aux_sym_match_default_expression_token1] = ACTIONS(1255), - [aux_sym_switch_statement_token1] = ACTIONS(1255), - [aux_sym_switch_block_token1] = ACTIONS(1255), - [anon_sym_AT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [aux_sym_clone_expression_token1] = ACTIONS(1255), - [aux_sym_print_intrinsic_token1] = ACTIONS(1255), - [aux_sym_object_creation_expression_token1] = ACTIONS(1255), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [sym_shell_command_expression] = ACTIONS(1253), - [aux_sym__list_destructing_token1] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_self] = ACTIONS(1255), - [anon_sym_parent] = ACTIONS(1255), - [anon_sym_POUND_LBRACK] = ACTIONS(1253), - [aux_sym_encapsed_string_token1] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1253), - [aux_sym_string_token1] = ACTIONS(1253), - [sym_boolean] = ACTIONS(1255), - [sym_null] = ACTIONS(1255), - [anon_sym_DOLLAR] = ACTIONS(1253), - [aux_sym_yield_expression_token1] = ACTIONS(1255), - [aux_sym_include_expression_token1] = ACTIONS(1255), - [aux_sym_include_once_expression_token1] = ACTIONS(1255), - [aux_sym_require_expression_token1] = ACTIONS(1255), - [aux_sym_require_once_expression_token1] = ACTIONS(1255), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1253), - }, - [532] = { - [sym_text_interpolation] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_name] = ACTIONS(1259), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1257), - [aux_sym_function_static_declaration_token1] = ACTIONS(1259), - [aux_sym_global_declaration_token1] = ACTIONS(1259), - [aux_sym_namespace_definition_token1] = ACTIONS(1259), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1259), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1259), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1259), - [anon_sym_BSLASH] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [aux_sym_trait_declaration_token1] = ACTIONS(1259), - [aux_sym_interface_declaration_token1] = ACTIONS(1259), - [aux_sym_enum_declaration_token1] = ACTIONS(1259), - [aux_sym_enum_case_token1] = ACTIONS(1259), - [aux_sym_class_declaration_token1] = ACTIONS(1259), - [aux_sym_final_modifier_token1] = ACTIONS(1259), - [aux_sym_abstract_modifier_token1] = ACTIONS(1259), - [aux_sym_visibility_modifier_token1] = ACTIONS(1259), - [aux_sym_visibility_modifier_token2] = ACTIONS(1259), - [aux_sym_visibility_modifier_token3] = ACTIONS(1259), - [aux_sym_arrow_function_token1] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1257), - [aux_sym_cast_type_token1] = ACTIONS(1259), - [aux_sym_echo_statement_token1] = ACTIONS(1259), - [anon_sym_unset] = ACTIONS(1259), - [aux_sym_declare_statement_token1] = ACTIONS(1259), - [aux_sym_declare_statement_token2] = ACTIONS(1259), - [sym_float] = ACTIONS(1259), - [aux_sym_try_statement_token1] = ACTIONS(1259), - [aux_sym_goto_statement_token1] = ACTIONS(1259), - [aux_sym_continue_statement_token1] = ACTIONS(1259), - [aux_sym_break_statement_token1] = ACTIONS(1259), - [sym_integer] = ACTIONS(1259), - [aux_sym_return_statement_token1] = ACTIONS(1259), - [aux_sym_throw_expression_token1] = ACTIONS(1259), - [aux_sym_while_statement_token1] = ACTIONS(1259), - [aux_sym_while_statement_token2] = ACTIONS(1259), - [aux_sym_do_statement_token1] = ACTIONS(1259), - [aux_sym_for_statement_token1] = ACTIONS(1259), - [aux_sym_for_statement_token2] = ACTIONS(1259), - [aux_sym_foreach_statement_token1] = ACTIONS(1259), - [aux_sym_foreach_statement_token2] = ACTIONS(1259), - [aux_sym_if_statement_token1] = ACTIONS(1259), - [aux_sym_if_statement_token2] = ACTIONS(1259), - [aux_sym_else_if_clause_token1] = ACTIONS(1259), - [aux_sym_else_clause_token1] = ACTIONS(1259), - [aux_sym_match_expression_token1] = ACTIONS(1259), - [aux_sym_match_default_expression_token1] = ACTIONS(1259), - [aux_sym_switch_statement_token1] = ACTIONS(1259), - [aux_sym_switch_block_token1] = ACTIONS(1259), - [anon_sym_AT] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [aux_sym_clone_expression_token1] = ACTIONS(1259), - [aux_sym_print_intrinsic_token1] = ACTIONS(1259), - [aux_sym_object_creation_expression_token1] = ACTIONS(1259), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [sym_shell_command_expression] = ACTIONS(1257), - [aux_sym__list_destructing_token1] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_self] = ACTIONS(1259), - [anon_sym_parent] = ACTIONS(1259), - [anon_sym_POUND_LBRACK] = ACTIONS(1257), - [aux_sym_encapsed_string_token1] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1257), - [aux_sym_string_token1] = ACTIONS(1257), - [sym_boolean] = ACTIONS(1259), - [sym_null] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(1257), - [aux_sym_yield_expression_token1] = ACTIONS(1259), - [aux_sym_include_expression_token1] = ACTIONS(1259), - [aux_sym_include_once_expression_token1] = ACTIONS(1259), - [aux_sym_require_expression_token1] = ACTIONS(1259), - [aux_sym_require_once_expression_token1] = ACTIONS(1259), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1257), - }, - [533] = { - [sym_text_interpolation] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1261), - [sym_name] = ACTIONS(1263), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1261), - [aux_sym_function_static_declaration_token1] = ACTIONS(1263), - [aux_sym_global_declaration_token1] = ACTIONS(1263), - [aux_sym_namespace_definition_token1] = ACTIONS(1263), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1263), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1263), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1263), - [anon_sym_BSLASH] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [aux_sym_trait_declaration_token1] = ACTIONS(1263), - [aux_sym_interface_declaration_token1] = ACTIONS(1263), - [aux_sym_enum_declaration_token1] = ACTIONS(1263), - [aux_sym_enum_case_token1] = ACTIONS(1263), - [aux_sym_class_declaration_token1] = ACTIONS(1263), - [aux_sym_final_modifier_token1] = ACTIONS(1263), - [aux_sym_abstract_modifier_token1] = ACTIONS(1263), - [aux_sym_visibility_modifier_token1] = ACTIONS(1263), - [aux_sym_visibility_modifier_token2] = ACTIONS(1263), - [aux_sym_visibility_modifier_token3] = ACTIONS(1263), - [aux_sym_arrow_function_token1] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [aux_sym_cast_type_token1] = ACTIONS(1263), - [aux_sym_echo_statement_token1] = ACTIONS(1263), - [anon_sym_unset] = ACTIONS(1263), - [aux_sym_declare_statement_token1] = ACTIONS(1263), - [aux_sym_declare_statement_token2] = ACTIONS(1263), - [sym_float] = ACTIONS(1263), - [aux_sym_try_statement_token1] = ACTIONS(1263), - [aux_sym_goto_statement_token1] = ACTIONS(1263), - [aux_sym_continue_statement_token1] = ACTIONS(1263), - [aux_sym_break_statement_token1] = ACTIONS(1263), - [sym_integer] = ACTIONS(1263), - [aux_sym_return_statement_token1] = ACTIONS(1263), - [aux_sym_throw_expression_token1] = ACTIONS(1263), - [aux_sym_while_statement_token1] = ACTIONS(1263), - [aux_sym_while_statement_token2] = ACTIONS(1263), - [aux_sym_do_statement_token1] = ACTIONS(1263), - [aux_sym_for_statement_token1] = ACTIONS(1263), - [aux_sym_for_statement_token2] = ACTIONS(1263), - [aux_sym_foreach_statement_token1] = ACTIONS(1263), - [aux_sym_foreach_statement_token2] = ACTIONS(1263), - [aux_sym_if_statement_token1] = ACTIONS(1263), - [aux_sym_if_statement_token2] = ACTIONS(1263), - [aux_sym_else_if_clause_token1] = ACTIONS(1263), - [aux_sym_else_clause_token1] = ACTIONS(1263), - [aux_sym_match_expression_token1] = ACTIONS(1263), - [aux_sym_match_default_expression_token1] = ACTIONS(1263), - [aux_sym_switch_statement_token1] = ACTIONS(1263), - [aux_sym_switch_block_token1] = ACTIONS(1263), - [anon_sym_AT] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [aux_sym_clone_expression_token1] = ACTIONS(1263), - [aux_sym_print_intrinsic_token1] = ACTIONS(1263), - [aux_sym_object_creation_expression_token1] = ACTIONS(1263), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [sym_shell_command_expression] = ACTIONS(1261), - [aux_sym__list_destructing_token1] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_self] = ACTIONS(1263), - [anon_sym_parent] = ACTIONS(1263), - [anon_sym_POUND_LBRACK] = ACTIONS(1261), - [aux_sym_encapsed_string_token1] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1261), - [aux_sym_string_token1] = ACTIONS(1261), - [sym_boolean] = ACTIONS(1263), - [sym_null] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1261), - [aux_sym_yield_expression_token1] = ACTIONS(1263), - [aux_sym_include_expression_token1] = ACTIONS(1263), - [aux_sym_include_once_expression_token1] = ACTIONS(1263), - [aux_sym_require_expression_token1] = ACTIONS(1263), - [aux_sym_require_once_expression_token1] = ACTIONS(1263), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1261), - }, - [534] = { - [sym_text_interpolation] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1265), - [sym_name] = ACTIONS(1267), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1265), - [aux_sym_function_static_declaration_token1] = ACTIONS(1267), - [aux_sym_global_declaration_token1] = ACTIONS(1267), - [aux_sym_namespace_definition_token1] = ACTIONS(1267), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1267), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1267), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1267), - [anon_sym_BSLASH] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [aux_sym_trait_declaration_token1] = ACTIONS(1267), - [aux_sym_interface_declaration_token1] = ACTIONS(1267), - [aux_sym_enum_declaration_token1] = ACTIONS(1267), - [aux_sym_enum_case_token1] = ACTIONS(1267), - [aux_sym_class_declaration_token1] = ACTIONS(1267), - [aux_sym_final_modifier_token1] = ACTIONS(1267), - [aux_sym_abstract_modifier_token1] = ACTIONS(1267), - [aux_sym_visibility_modifier_token1] = ACTIONS(1267), - [aux_sym_visibility_modifier_token2] = ACTIONS(1267), - [aux_sym_visibility_modifier_token3] = ACTIONS(1267), - [aux_sym_arrow_function_token1] = ACTIONS(1267), - [anon_sym_LPAREN] = ACTIONS(1265), - [aux_sym_cast_type_token1] = ACTIONS(1267), - [aux_sym_echo_statement_token1] = ACTIONS(1267), - [anon_sym_unset] = ACTIONS(1267), - [aux_sym_declare_statement_token1] = ACTIONS(1267), - [aux_sym_declare_statement_token2] = ACTIONS(1267), - [sym_float] = ACTIONS(1267), - [aux_sym_try_statement_token1] = ACTIONS(1267), - [aux_sym_goto_statement_token1] = ACTIONS(1267), - [aux_sym_continue_statement_token1] = ACTIONS(1267), - [aux_sym_break_statement_token1] = ACTIONS(1267), - [sym_integer] = ACTIONS(1267), - [aux_sym_return_statement_token1] = ACTIONS(1267), - [aux_sym_throw_expression_token1] = ACTIONS(1267), - [aux_sym_while_statement_token1] = ACTIONS(1267), - [aux_sym_while_statement_token2] = ACTIONS(1267), - [aux_sym_do_statement_token1] = ACTIONS(1267), - [aux_sym_for_statement_token1] = ACTIONS(1267), - [aux_sym_for_statement_token2] = ACTIONS(1267), - [aux_sym_foreach_statement_token1] = ACTIONS(1267), - [aux_sym_foreach_statement_token2] = ACTIONS(1267), - [aux_sym_if_statement_token1] = ACTIONS(1267), - [aux_sym_if_statement_token2] = ACTIONS(1267), - [aux_sym_else_if_clause_token1] = ACTIONS(1267), - [aux_sym_else_clause_token1] = ACTIONS(1267), - [aux_sym_match_expression_token1] = ACTIONS(1267), - [aux_sym_match_default_expression_token1] = ACTIONS(1267), - [aux_sym_switch_statement_token1] = ACTIONS(1267), - [aux_sym_switch_block_token1] = ACTIONS(1267), - [anon_sym_AT] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [aux_sym_clone_expression_token1] = ACTIONS(1267), - [aux_sym_print_intrinsic_token1] = ACTIONS(1267), - [aux_sym_object_creation_expression_token1] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [sym_shell_command_expression] = ACTIONS(1265), - [aux_sym__list_destructing_token1] = ACTIONS(1267), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_self] = ACTIONS(1267), - [anon_sym_parent] = ACTIONS(1267), - [anon_sym_POUND_LBRACK] = ACTIONS(1265), - [aux_sym_encapsed_string_token1] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [aux_sym_string_token1] = ACTIONS(1265), - [sym_boolean] = ACTIONS(1267), - [sym_null] = ACTIONS(1267), - [anon_sym_DOLLAR] = ACTIONS(1265), - [aux_sym_yield_expression_token1] = ACTIONS(1267), - [aux_sym_include_expression_token1] = ACTIONS(1267), - [aux_sym_include_once_expression_token1] = ACTIONS(1267), - [aux_sym_require_expression_token1] = ACTIONS(1267), - [aux_sym_require_once_expression_token1] = ACTIONS(1267), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1265), - }, - [535] = { - [sym_text_interpolation] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_name] = ACTIONS(1271), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1269), - [aux_sym_function_static_declaration_token1] = ACTIONS(1271), - [aux_sym_global_declaration_token1] = ACTIONS(1271), - [aux_sym_namespace_definition_token1] = ACTIONS(1271), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1271), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1271), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1271), - [anon_sym_BSLASH] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), - [aux_sym_trait_declaration_token1] = ACTIONS(1271), - [aux_sym_interface_declaration_token1] = ACTIONS(1271), - [aux_sym_enum_declaration_token1] = ACTIONS(1271), - [aux_sym_enum_case_token1] = ACTIONS(1271), - [aux_sym_class_declaration_token1] = ACTIONS(1271), - [aux_sym_final_modifier_token1] = ACTIONS(1271), - [aux_sym_abstract_modifier_token1] = ACTIONS(1271), - [aux_sym_visibility_modifier_token1] = ACTIONS(1271), - [aux_sym_visibility_modifier_token2] = ACTIONS(1271), - [aux_sym_visibility_modifier_token3] = ACTIONS(1271), - [aux_sym_arrow_function_token1] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1269), - [aux_sym_cast_type_token1] = ACTIONS(1271), - [aux_sym_echo_statement_token1] = ACTIONS(1271), - [anon_sym_unset] = ACTIONS(1271), - [aux_sym_declare_statement_token1] = ACTIONS(1271), - [aux_sym_declare_statement_token2] = ACTIONS(1271), - [sym_float] = ACTIONS(1271), - [aux_sym_try_statement_token1] = ACTIONS(1271), - [aux_sym_goto_statement_token1] = ACTIONS(1271), - [aux_sym_continue_statement_token1] = ACTIONS(1271), - [aux_sym_break_statement_token1] = ACTIONS(1271), - [sym_integer] = ACTIONS(1271), - [aux_sym_return_statement_token1] = ACTIONS(1271), - [aux_sym_throw_expression_token1] = ACTIONS(1271), - [aux_sym_while_statement_token1] = ACTIONS(1271), - [aux_sym_while_statement_token2] = ACTIONS(1271), - [aux_sym_do_statement_token1] = ACTIONS(1271), - [aux_sym_for_statement_token1] = ACTIONS(1271), - [aux_sym_for_statement_token2] = ACTIONS(1271), - [aux_sym_foreach_statement_token1] = ACTIONS(1271), - [aux_sym_foreach_statement_token2] = ACTIONS(1271), - [aux_sym_if_statement_token1] = ACTIONS(1271), - [aux_sym_if_statement_token2] = ACTIONS(1271), - [aux_sym_else_if_clause_token1] = ACTIONS(1271), - [aux_sym_else_clause_token1] = ACTIONS(1271), - [aux_sym_match_expression_token1] = ACTIONS(1271), - [aux_sym_match_default_expression_token1] = ACTIONS(1271), - [aux_sym_switch_statement_token1] = ACTIONS(1271), - [aux_sym_switch_block_token1] = ACTIONS(1271), - [anon_sym_AT] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [aux_sym_clone_expression_token1] = ACTIONS(1271), - [aux_sym_print_intrinsic_token1] = ACTIONS(1271), - [aux_sym_object_creation_expression_token1] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [sym_shell_command_expression] = ACTIONS(1269), - [aux_sym__list_destructing_token1] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_self] = ACTIONS(1271), - [anon_sym_parent] = ACTIONS(1271), - [anon_sym_POUND_LBRACK] = ACTIONS(1269), - [aux_sym_encapsed_string_token1] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [aux_sym_string_token1] = ACTIONS(1269), - [sym_boolean] = ACTIONS(1271), - [sym_null] = ACTIONS(1271), - [anon_sym_DOLLAR] = ACTIONS(1269), - [aux_sym_yield_expression_token1] = ACTIONS(1271), - [aux_sym_include_expression_token1] = ACTIONS(1271), - [aux_sym_include_once_expression_token1] = ACTIONS(1271), - [aux_sym_require_expression_token1] = ACTIONS(1271), - [aux_sym_require_once_expression_token1] = ACTIONS(1271), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1269), - }, - [536] = { - [sym_text_interpolation] = STATE(536), - [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_enum_declaration_token1] = ACTIONS(1031), - [aux_sym_enum_case_token1] = ACTIONS(1031), - [aux_sym_class_declaration_token1] = ACTIONS(1031), - [aux_sym_final_modifier_token1] = ACTIONS(1031), - [aux_sym_abstract_modifier_token1] = ACTIONS(1031), - [aux_sym_visibility_modifier_token1] = ACTIONS(1031), - [aux_sym_visibility_modifier_token2] = ACTIONS(1031), - [aux_sym_visibility_modifier_token3] = ACTIONS(1031), - [aux_sym_arrow_function_token1] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1029), - [aux_sym_cast_type_token1] = ACTIONS(1031), - [aux_sym_echo_statement_token1] = ACTIONS(1031), - [anon_sym_unset] = ACTIONS(1031), - [aux_sym_declare_statement_token1] = ACTIONS(1031), - [aux_sym_declare_statement_token2] = 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_expression_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_match_expression_token1] = ACTIONS(1031), - [aux_sym_match_default_expression_token1] = ACTIONS(1031), - [aux_sym_switch_statement_token1] = ACTIONS(1031), - [aux_sym_switch_block_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), - [aux_sym_clone_expression_token1] = ACTIONS(1031), - [aux_sym_print_intrinsic_token1] = ACTIONS(1031), - [aux_sym_object_creation_expression_token1] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [sym_shell_command_expression] = ACTIONS(1029), - [aux_sym__list_destructing_token1] = ACTIONS(1031), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_self] = ACTIONS(1031), - [anon_sym_parent] = ACTIONS(1031), - [anon_sym_POUND_LBRACK] = ACTIONS(1029), - [aux_sym_encapsed_string_token1] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1029), - [aux_sym_string_token1] = ACTIONS(1029), - [sym_boolean] = ACTIONS(1031), - [sym_null] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1029), - [aux_sym_yield_expression_token1] = 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), - }, - [537] = { - [sym_text_interpolation] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(950), - [sym_name] = ACTIONS(952), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(950), - [aux_sym_function_static_declaration_token1] = ACTIONS(952), - [aux_sym_global_declaration_token1] = ACTIONS(952), - [aux_sym_namespace_definition_token1] = ACTIONS(952), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(952), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(952), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(952), - [anon_sym_BSLASH] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [aux_sym_trait_declaration_token1] = ACTIONS(952), - [aux_sym_interface_declaration_token1] = ACTIONS(952), - [aux_sym_enum_declaration_token1] = ACTIONS(952), - [aux_sym_enum_case_token1] = ACTIONS(952), - [aux_sym_class_declaration_token1] = ACTIONS(952), - [aux_sym_final_modifier_token1] = ACTIONS(952), - [aux_sym_abstract_modifier_token1] = ACTIONS(952), - [aux_sym_visibility_modifier_token1] = ACTIONS(952), - [aux_sym_visibility_modifier_token2] = ACTIONS(952), - [aux_sym_visibility_modifier_token3] = ACTIONS(952), - [aux_sym_arrow_function_token1] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(950), - [aux_sym_cast_type_token1] = ACTIONS(952), - [aux_sym_echo_statement_token1] = ACTIONS(952), - [anon_sym_unset] = ACTIONS(952), - [aux_sym_declare_statement_token1] = ACTIONS(952), - [aux_sym_declare_statement_token2] = ACTIONS(952), - [sym_float] = ACTIONS(952), - [aux_sym_try_statement_token1] = ACTIONS(952), - [aux_sym_goto_statement_token1] = ACTIONS(952), - [aux_sym_continue_statement_token1] = ACTIONS(952), - [aux_sym_break_statement_token1] = ACTIONS(952), - [sym_integer] = ACTIONS(952), - [aux_sym_return_statement_token1] = ACTIONS(952), - [aux_sym_throw_expression_token1] = ACTIONS(952), - [aux_sym_while_statement_token1] = ACTIONS(952), - [aux_sym_while_statement_token2] = ACTIONS(952), - [aux_sym_do_statement_token1] = ACTIONS(952), - [aux_sym_for_statement_token1] = ACTIONS(952), - [aux_sym_for_statement_token2] = ACTIONS(952), - [aux_sym_foreach_statement_token1] = ACTIONS(952), - [aux_sym_foreach_statement_token2] = ACTIONS(952), - [aux_sym_if_statement_token1] = ACTIONS(952), - [aux_sym_if_statement_token2] = ACTIONS(952), - [aux_sym_else_if_clause_token1] = ACTIONS(952), - [aux_sym_else_clause_token1] = ACTIONS(952), - [aux_sym_match_expression_token1] = ACTIONS(952), - [aux_sym_match_default_expression_token1] = ACTIONS(952), - [aux_sym_switch_statement_token1] = ACTIONS(952), - [aux_sym_switch_block_token1] = ACTIONS(952), - [anon_sym_AT] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(950), - [aux_sym_clone_expression_token1] = ACTIONS(952), - [aux_sym_print_intrinsic_token1] = ACTIONS(952), - [aux_sym_object_creation_expression_token1] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [sym_shell_command_expression] = ACTIONS(950), - [aux_sym__list_destructing_token1] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_self] = ACTIONS(952), - [anon_sym_parent] = ACTIONS(952), - [anon_sym_POUND_LBRACK] = ACTIONS(950), - [aux_sym_encapsed_string_token1] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(950), - [aux_sym_string_token1] = ACTIONS(950), - [sym_boolean] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(950), - [aux_sym_yield_expression_token1] = ACTIONS(952), - [aux_sym_include_expression_token1] = ACTIONS(952), - [aux_sym_include_once_expression_token1] = ACTIONS(952), - [aux_sym_require_expression_token1] = ACTIONS(952), - [aux_sym_require_once_expression_token1] = ACTIONS(952), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(950), - }, - [538] = { - [sym_text_interpolation] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1273), - [sym_name] = ACTIONS(1275), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1273), - [aux_sym_function_static_declaration_token1] = ACTIONS(1275), - [aux_sym_global_declaration_token1] = ACTIONS(1275), - [aux_sym_namespace_definition_token1] = ACTIONS(1275), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1275), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1275), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1275), - [anon_sym_BSLASH] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [aux_sym_trait_declaration_token1] = ACTIONS(1275), - [aux_sym_interface_declaration_token1] = ACTIONS(1275), - [aux_sym_enum_declaration_token1] = ACTIONS(1275), - [aux_sym_enum_case_token1] = ACTIONS(1275), - [aux_sym_class_declaration_token1] = ACTIONS(1275), - [aux_sym_final_modifier_token1] = ACTIONS(1275), - [aux_sym_abstract_modifier_token1] = ACTIONS(1275), - [aux_sym_visibility_modifier_token1] = ACTIONS(1275), - [aux_sym_visibility_modifier_token2] = ACTIONS(1275), - [aux_sym_visibility_modifier_token3] = ACTIONS(1275), - [aux_sym_arrow_function_token1] = ACTIONS(1275), - [anon_sym_LPAREN] = ACTIONS(1273), - [aux_sym_cast_type_token1] = ACTIONS(1275), - [aux_sym_echo_statement_token1] = ACTIONS(1275), - [anon_sym_unset] = ACTIONS(1275), - [aux_sym_declare_statement_token1] = ACTIONS(1275), - [aux_sym_declare_statement_token2] = ACTIONS(1275), - [sym_float] = ACTIONS(1275), - [aux_sym_try_statement_token1] = ACTIONS(1275), - [aux_sym_goto_statement_token1] = ACTIONS(1275), - [aux_sym_continue_statement_token1] = ACTIONS(1275), - [aux_sym_break_statement_token1] = ACTIONS(1275), - [sym_integer] = ACTIONS(1275), - [aux_sym_return_statement_token1] = ACTIONS(1275), - [aux_sym_throw_expression_token1] = ACTIONS(1275), - [aux_sym_while_statement_token1] = ACTIONS(1275), - [aux_sym_while_statement_token2] = ACTIONS(1275), - [aux_sym_do_statement_token1] = ACTIONS(1275), - [aux_sym_for_statement_token1] = ACTIONS(1275), - [aux_sym_for_statement_token2] = ACTIONS(1275), - [aux_sym_foreach_statement_token1] = ACTIONS(1275), - [aux_sym_foreach_statement_token2] = ACTIONS(1275), - [aux_sym_if_statement_token1] = ACTIONS(1275), - [aux_sym_if_statement_token2] = ACTIONS(1275), - [aux_sym_else_if_clause_token1] = ACTIONS(1275), - [aux_sym_else_clause_token1] = ACTIONS(1275), - [aux_sym_match_expression_token1] = ACTIONS(1275), - [aux_sym_match_default_expression_token1] = ACTIONS(1275), - [aux_sym_switch_statement_token1] = ACTIONS(1275), - [aux_sym_switch_block_token1] = ACTIONS(1275), - [anon_sym_AT] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1273), - [aux_sym_clone_expression_token1] = ACTIONS(1275), - [aux_sym_print_intrinsic_token1] = ACTIONS(1275), - [aux_sym_object_creation_expression_token1] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [sym_shell_command_expression] = ACTIONS(1273), - [aux_sym__list_destructing_token1] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_self] = ACTIONS(1275), - [anon_sym_parent] = ACTIONS(1275), - [anon_sym_POUND_LBRACK] = ACTIONS(1273), - [aux_sym_encapsed_string_token1] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1273), - [aux_sym_string_token1] = ACTIONS(1273), - [sym_boolean] = ACTIONS(1275), - [sym_null] = ACTIONS(1275), - [anon_sym_DOLLAR] = ACTIONS(1273), - [aux_sym_yield_expression_token1] = ACTIONS(1275), - [aux_sym_include_expression_token1] = ACTIONS(1275), - [aux_sym_include_once_expression_token1] = ACTIONS(1275), - [aux_sym_require_expression_token1] = ACTIONS(1275), - [aux_sym_require_once_expression_token1] = ACTIONS(1275), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1273), - }, - [539] = { - [sym_text_interpolation] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1277), - [sym_name] = ACTIONS(1279), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1277), - [aux_sym_function_static_declaration_token1] = ACTIONS(1279), - [aux_sym_global_declaration_token1] = ACTIONS(1279), - [aux_sym_namespace_definition_token1] = ACTIONS(1279), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1279), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1279), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1279), - [anon_sym_BSLASH] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1277), - [aux_sym_trait_declaration_token1] = ACTIONS(1279), - [aux_sym_interface_declaration_token1] = ACTIONS(1279), - [aux_sym_enum_declaration_token1] = ACTIONS(1279), - [aux_sym_enum_case_token1] = ACTIONS(1279), - [aux_sym_class_declaration_token1] = ACTIONS(1279), - [aux_sym_final_modifier_token1] = ACTIONS(1279), - [aux_sym_abstract_modifier_token1] = ACTIONS(1279), - [aux_sym_visibility_modifier_token1] = ACTIONS(1279), - [aux_sym_visibility_modifier_token2] = ACTIONS(1279), - [aux_sym_visibility_modifier_token3] = ACTIONS(1279), - [aux_sym_arrow_function_token1] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1277), - [aux_sym_cast_type_token1] = ACTIONS(1279), - [aux_sym_echo_statement_token1] = ACTIONS(1279), - [anon_sym_unset] = ACTIONS(1279), - [aux_sym_declare_statement_token1] = ACTIONS(1279), - [aux_sym_declare_statement_token2] = ACTIONS(1279), - [sym_float] = ACTIONS(1279), - [aux_sym_try_statement_token1] = ACTIONS(1279), - [aux_sym_goto_statement_token1] = ACTIONS(1279), - [aux_sym_continue_statement_token1] = ACTIONS(1279), - [aux_sym_break_statement_token1] = ACTIONS(1279), - [sym_integer] = ACTIONS(1279), - [aux_sym_return_statement_token1] = ACTIONS(1279), - [aux_sym_throw_expression_token1] = ACTIONS(1279), - [aux_sym_while_statement_token1] = ACTIONS(1279), - [aux_sym_while_statement_token2] = ACTIONS(1279), - [aux_sym_do_statement_token1] = ACTIONS(1279), - [aux_sym_for_statement_token1] = ACTIONS(1279), - [aux_sym_for_statement_token2] = ACTIONS(1279), - [aux_sym_foreach_statement_token1] = ACTIONS(1279), - [aux_sym_foreach_statement_token2] = ACTIONS(1279), - [aux_sym_if_statement_token1] = ACTIONS(1279), - [aux_sym_if_statement_token2] = ACTIONS(1279), - [aux_sym_else_if_clause_token1] = ACTIONS(1279), - [aux_sym_else_clause_token1] = ACTIONS(1279), - [aux_sym_match_expression_token1] = ACTIONS(1279), - [aux_sym_match_default_expression_token1] = ACTIONS(1279), - [aux_sym_switch_statement_token1] = ACTIONS(1279), - [aux_sym_switch_block_token1] = ACTIONS(1279), - [anon_sym_AT] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1277), - [aux_sym_clone_expression_token1] = ACTIONS(1279), - [aux_sym_print_intrinsic_token1] = ACTIONS(1279), - [aux_sym_object_creation_expression_token1] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1277), - [sym_shell_command_expression] = ACTIONS(1277), - [aux_sym__list_destructing_token1] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_self] = ACTIONS(1279), - [anon_sym_parent] = ACTIONS(1279), - [anon_sym_POUND_LBRACK] = ACTIONS(1277), - [aux_sym_encapsed_string_token1] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [anon_sym_SQUOTE] = ACTIONS(1277), - [aux_sym_string_token1] = ACTIONS(1277), - [sym_boolean] = ACTIONS(1279), - [sym_null] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1277), - [aux_sym_yield_expression_token1] = ACTIONS(1279), - [aux_sym_include_expression_token1] = ACTIONS(1279), - [aux_sym_include_once_expression_token1] = ACTIONS(1279), - [aux_sym_require_expression_token1] = ACTIONS(1279), - [aux_sym_require_once_expression_token1] = ACTIONS(1279), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1277), - }, - [540] = { - [sym_text_interpolation] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1281), - [sym_name] = ACTIONS(1283), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1281), - [aux_sym_function_static_declaration_token1] = ACTIONS(1283), - [aux_sym_global_declaration_token1] = ACTIONS(1283), - [aux_sym_namespace_definition_token1] = ACTIONS(1283), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1283), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1283), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1283), - [anon_sym_BSLASH] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1281), - [aux_sym_trait_declaration_token1] = ACTIONS(1283), - [aux_sym_interface_declaration_token1] = ACTIONS(1283), - [aux_sym_enum_declaration_token1] = ACTIONS(1283), - [aux_sym_enum_case_token1] = ACTIONS(1283), - [aux_sym_class_declaration_token1] = ACTIONS(1283), - [aux_sym_final_modifier_token1] = ACTIONS(1283), - [aux_sym_abstract_modifier_token1] = ACTIONS(1283), - [aux_sym_visibility_modifier_token1] = ACTIONS(1283), - [aux_sym_visibility_modifier_token2] = ACTIONS(1283), - [aux_sym_visibility_modifier_token3] = ACTIONS(1283), - [aux_sym_arrow_function_token1] = ACTIONS(1283), - [anon_sym_LPAREN] = ACTIONS(1281), - [aux_sym_cast_type_token1] = ACTIONS(1283), - [aux_sym_echo_statement_token1] = ACTIONS(1283), - [anon_sym_unset] = ACTIONS(1283), - [aux_sym_declare_statement_token1] = ACTIONS(1283), - [aux_sym_declare_statement_token2] = ACTIONS(1283), - [sym_float] = ACTIONS(1283), - [aux_sym_try_statement_token1] = ACTIONS(1283), - [aux_sym_goto_statement_token1] = ACTIONS(1283), - [aux_sym_continue_statement_token1] = ACTIONS(1283), - [aux_sym_break_statement_token1] = ACTIONS(1283), - [sym_integer] = ACTIONS(1283), - [aux_sym_return_statement_token1] = ACTIONS(1283), - [aux_sym_throw_expression_token1] = ACTIONS(1283), - [aux_sym_while_statement_token1] = ACTIONS(1283), - [aux_sym_while_statement_token2] = ACTIONS(1283), - [aux_sym_do_statement_token1] = ACTIONS(1283), - [aux_sym_for_statement_token1] = ACTIONS(1283), - [aux_sym_for_statement_token2] = ACTIONS(1283), - [aux_sym_foreach_statement_token1] = ACTIONS(1283), - [aux_sym_foreach_statement_token2] = ACTIONS(1283), - [aux_sym_if_statement_token1] = ACTIONS(1283), - [aux_sym_if_statement_token2] = ACTIONS(1283), - [aux_sym_else_if_clause_token1] = ACTIONS(1283), - [aux_sym_else_clause_token1] = ACTIONS(1283), - [aux_sym_match_expression_token1] = ACTIONS(1283), - [aux_sym_match_default_expression_token1] = ACTIONS(1283), - [aux_sym_switch_statement_token1] = ACTIONS(1283), - [aux_sym_switch_block_token1] = ACTIONS(1283), - [anon_sym_AT] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1281), - [aux_sym_clone_expression_token1] = ACTIONS(1283), - [aux_sym_print_intrinsic_token1] = ACTIONS(1283), - [aux_sym_object_creation_expression_token1] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [sym_shell_command_expression] = ACTIONS(1281), - [aux_sym__list_destructing_token1] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1281), - [anon_sym_self] = ACTIONS(1283), - [anon_sym_parent] = ACTIONS(1283), - [anon_sym_POUND_LBRACK] = ACTIONS(1281), - [aux_sym_encapsed_string_token1] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1281), - [aux_sym_string_token1] = ACTIONS(1281), - [sym_boolean] = ACTIONS(1283), - [sym_null] = ACTIONS(1283), - [anon_sym_DOLLAR] = ACTIONS(1281), - [aux_sym_yield_expression_token1] = ACTIONS(1283), - [aux_sym_include_expression_token1] = ACTIONS(1283), - [aux_sym_include_once_expression_token1] = ACTIONS(1283), - [aux_sym_require_expression_token1] = ACTIONS(1283), - [aux_sym_require_once_expression_token1] = ACTIONS(1283), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1281), - }, - [541] = { - [sym_text_interpolation] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1285), - [sym_name] = ACTIONS(1287), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1285), - [aux_sym_function_static_declaration_token1] = ACTIONS(1287), - [aux_sym_global_declaration_token1] = ACTIONS(1287), - [aux_sym_namespace_definition_token1] = ACTIONS(1287), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1287), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1287), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1287), - [anon_sym_BSLASH] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1285), - [aux_sym_trait_declaration_token1] = ACTIONS(1287), - [aux_sym_interface_declaration_token1] = ACTIONS(1287), - [aux_sym_enum_declaration_token1] = ACTIONS(1287), - [aux_sym_enum_case_token1] = ACTIONS(1287), - [aux_sym_class_declaration_token1] = ACTIONS(1287), - [aux_sym_final_modifier_token1] = ACTIONS(1287), - [aux_sym_abstract_modifier_token1] = ACTIONS(1287), - [aux_sym_visibility_modifier_token1] = ACTIONS(1287), - [aux_sym_visibility_modifier_token2] = ACTIONS(1287), - [aux_sym_visibility_modifier_token3] = ACTIONS(1287), - [aux_sym_arrow_function_token1] = ACTIONS(1287), - [anon_sym_LPAREN] = ACTIONS(1285), - [aux_sym_cast_type_token1] = ACTIONS(1287), - [aux_sym_echo_statement_token1] = ACTIONS(1287), - [anon_sym_unset] = ACTIONS(1287), - [aux_sym_declare_statement_token1] = ACTIONS(1287), - [aux_sym_declare_statement_token2] = ACTIONS(1287), - [sym_float] = ACTIONS(1287), - [aux_sym_try_statement_token1] = ACTIONS(1287), - [aux_sym_goto_statement_token1] = ACTIONS(1287), - [aux_sym_continue_statement_token1] = ACTIONS(1287), - [aux_sym_break_statement_token1] = ACTIONS(1287), - [sym_integer] = ACTIONS(1287), - [aux_sym_return_statement_token1] = ACTIONS(1287), - [aux_sym_throw_expression_token1] = ACTIONS(1287), - [aux_sym_while_statement_token1] = ACTIONS(1287), - [aux_sym_while_statement_token2] = ACTIONS(1287), - [aux_sym_do_statement_token1] = ACTIONS(1287), - [aux_sym_for_statement_token1] = ACTIONS(1287), - [aux_sym_for_statement_token2] = ACTIONS(1287), - [aux_sym_foreach_statement_token1] = ACTIONS(1287), - [aux_sym_foreach_statement_token2] = ACTIONS(1287), - [aux_sym_if_statement_token1] = ACTIONS(1287), - [aux_sym_if_statement_token2] = ACTIONS(1287), - [aux_sym_else_if_clause_token1] = ACTIONS(1287), - [aux_sym_else_clause_token1] = ACTIONS(1287), - [aux_sym_match_expression_token1] = ACTIONS(1287), - [aux_sym_match_default_expression_token1] = ACTIONS(1287), - [aux_sym_switch_statement_token1] = ACTIONS(1287), - [aux_sym_switch_block_token1] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [aux_sym_clone_expression_token1] = ACTIONS(1287), - [aux_sym_print_intrinsic_token1] = ACTIONS(1287), - [aux_sym_object_creation_expression_token1] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [sym_shell_command_expression] = ACTIONS(1285), - [aux_sym__list_destructing_token1] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_self] = ACTIONS(1287), - [anon_sym_parent] = ACTIONS(1287), - [anon_sym_POUND_LBRACK] = ACTIONS(1285), - [aux_sym_encapsed_string_token1] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1285), - [aux_sym_string_token1] = ACTIONS(1285), - [sym_boolean] = ACTIONS(1287), - [sym_null] = ACTIONS(1287), - [anon_sym_DOLLAR] = ACTIONS(1285), - [aux_sym_yield_expression_token1] = ACTIONS(1287), - [aux_sym_include_expression_token1] = ACTIONS(1287), - [aux_sym_include_once_expression_token1] = ACTIONS(1287), - [aux_sym_require_expression_token1] = ACTIONS(1287), - [aux_sym_require_once_expression_token1] = ACTIONS(1287), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1285), - }, - [542] = { - [sym_text_interpolation] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1289), - [sym_name] = ACTIONS(1291), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1289), - [aux_sym_function_static_declaration_token1] = ACTIONS(1291), - [aux_sym_global_declaration_token1] = ACTIONS(1291), - [aux_sym_namespace_definition_token1] = ACTIONS(1291), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1291), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1291), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1291), - [anon_sym_BSLASH] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1289), - [anon_sym_RBRACE] = ACTIONS(1289), - [aux_sym_trait_declaration_token1] = ACTIONS(1291), - [aux_sym_interface_declaration_token1] = ACTIONS(1291), - [aux_sym_enum_declaration_token1] = ACTIONS(1291), - [aux_sym_enum_case_token1] = ACTIONS(1291), - [aux_sym_class_declaration_token1] = ACTIONS(1291), - [aux_sym_final_modifier_token1] = ACTIONS(1291), - [aux_sym_abstract_modifier_token1] = ACTIONS(1291), - [aux_sym_visibility_modifier_token1] = ACTIONS(1291), - [aux_sym_visibility_modifier_token2] = ACTIONS(1291), - [aux_sym_visibility_modifier_token3] = ACTIONS(1291), - [aux_sym_arrow_function_token1] = ACTIONS(1291), - [anon_sym_LPAREN] = ACTIONS(1289), - [aux_sym_cast_type_token1] = ACTIONS(1291), - [aux_sym_echo_statement_token1] = ACTIONS(1291), - [anon_sym_unset] = ACTIONS(1291), - [aux_sym_declare_statement_token1] = ACTIONS(1291), - [aux_sym_declare_statement_token2] = ACTIONS(1291), - [sym_float] = ACTIONS(1291), - [aux_sym_try_statement_token1] = ACTIONS(1291), - [aux_sym_goto_statement_token1] = ACTIONS(1291), - [aux_sym_continue_statement_token1] = ACTIONS(1291), - [aux_sym_break_statement_token1] = ACTIONS(1291), - [sym_integer] = ACTIONS(1291), - [aux_sym_return_statement_token1] = ACTIONS(1291), - [aux_sym_throw_expression_token1] = ACTIONS(1291), - [aux_sym_while_statement_token1] = ACTIONS(1291), - [aux_sym_while_statement_token2] = ACTIONS(1291), - [aux_sym_do_statement_token1] = ACTIONS(1291), - [aux_sym_for_statement_token1] = ACTIONS(1291), - [aux_sym_for_statement_token2] = ACTIONS(1291), - [aux_sym_foreach_statement_token1] = ACTIONS(1291), - [aux_sym_foreach_statement_token2] = ACTIONS(1291), - [aux_sym_if_statement_token1] = ACTIONS(1291), - [aux_sym_if_statement_token2] = ACTIONS(1291), - [aux_sym_else_if_clause_token1] = ACTIONS(1291), - [aux_sym_else_clause_token1] = ACTIONS(1291), - [aux_sym_match_expression_token1] = ACTIONS(1291), - [aux_sym_match_default_expression_token1] = ACTIONS(1291), - [aux_sym_switch_statement_token1] = ACTIONS(1291), - [aux_sym_switch_block_token1] = ACTIONS(1291), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [aux_sym_clone_expression_token1] = ACTIONS(1291), - [aux_sym_print_intrinsic_token1] = ACTIONS(1291), - [aux_sym_object_creation_expression_token1] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [sym_shell_command_expression] = ACTIONS(1289), - [aux_sym__list_destructing_token1] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_self] = ACTIONS(1291), - [anon_sym_parent] = ACTIONS(1291), - [anon_sym_POUND_LBRACK] = ACTIONS(1289), - [aux_sym_encapsed_string_token1] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1289), - [aux_sym_string_token1] = ACTIONS(1289), - [sym_boolean] = ACTIONS(1291), - [sym_null] = ACTIONS(1291), - [anon_sym_DOLLAR] = ACTIONS(1289), - [aux_sym_yield_expression_token1] = ACTIONS(1291), - [aux_sym_include_expression_token1] = ACTIONS(1291), - [aux_sym_include_once_expression_token1] = ACTIONS(1291), - [aux_sym_require_expression_token1] = ACTIONS(1291), - [aux_sym_require_once_expression_token1] = ACTIONS(1291), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1289), - }, - [543] = { - [sym_text_interpolation] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1277), - [sym_name] = ACTIONS(1279), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1277), - [aux_sym_function_static_declaration_token1] = ACTIONS(1279), - [aux_sym_global_declaration_token1] = ACTIONS(1279), - [aux_sym_namespace_definition_token1] = ACTIONS(1279), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1279), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1279), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1279), - [anon_sym_BSLASH] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1277), - [aux_sym_trait_declaration_token1] = ACTIONS(1279), - [aux_sym_interface_declaration_token1] = ACTIONS(1279), - [aux_sym_enum_declaration_token1] = ACTIONS(1279), - [aux_sym_enum_case_token1] = ACTIONS(1279), - [aux_sym_class_declaration_token1] = ACTIONS(1279), - [aux_sym_final_modifier_token1] = ACTIONS(1279), - [aux_sym_abstract_modifier_token1] = ACTIONS(1279), - [aux_sym_visibility_modifier_token1] = ACTIONS(1279), - [aux_sym_visibility_modifier_token2] = ACTIONS(1279), - [aux_sym_visibility_modifier_token3] = ACTIONS(1279), - [aux_sym_arrow_function_token1] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1277), - [aux_sym_cast_type_token1] = ACTIONS(1279), - [aux_sym_echo_statement_token1] = ACTIONS(1279), - [anon_sym_unset] = ACTIONS(1279), - [aux_sym_declare_statement_token1] = ACTIONS(1279), - [aux_sym_declare_statement_token2] = ACTIONS(1279), - [sym_float] = ACTIONS(1279), - [aux_sym_try_statement_token1] = ACTIONS(1279), - [aux_sym_goto_statement_token1] = ACTIONS(1279), - [aux_sym_continue_statement_token1] = ACTIONS(1279), - [aux_sym_break_statement_token1] = ACTIONS(1279), - [sym_integer] = ACTIONS(1279), - [aux_sym_return_statement_token1] = ACTIONS(1279), - [aux_sym_throw_expression_token1] = ACTIONS(1279), - [aux_sym_while_statement_token1] = ACTIONS(1279), - [aux_sym_while_statement_token2] = ACTIONS(1279), - [aux_sym_do_statement_token1] = ACTIONS(1279), - [aux_sym_for_statement_token1] = ACTIONS(1279), - [aux_sym_for_statement_token2] = ACTIONS(1279), - [aux_sym_foreach_statement_token1] = ACTIONS(1279), - [aux_sym_foreach_statement_token2] = ACTIONS(1279), - [aux_sym_if_statement_token1] = ACTIONS(1279), - [aux_sym_if_statement_token2] = ACTIONS(1279), - [aux_sym_else_if_clause_token1] = ACTIONS(1279), - [aux_sym_else_clause_token1] = ACTIONS(1279), - [aux_sym_match_expression_token1] = ACTIONS(1279), - [aux_sym_match_default_expression_token1] = ACTIONS(1279), - [aux_sym_switch_statement_token1] = ACTIONS(1279), - [aux_sym_switch_block_token1] = ACTIONS(1279), - [anon_sym_AT] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1277), - [aux_sym_clone_expression_token1] = ACTIONS(1279), - [aux_sym_print_intrinsic_token1] = ACTIONS(1279), - [aux_sym_object_creation_expression_token1] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1277), - [sym_shell_command_expression] = ACTIONS(1277), - [aux_sym__list_destructing_token1] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_self] = ACTIONS(1279), - [anon_sym_parent] = ACTIONS(1279), - [anon_sym_POUND_LBRACK] = ACTIONS(1277), - [aux_sym_encapsed_string_token1] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [anon_sym_SQUOTE] = ACTIONS(1277), - [aux_sym_string_token1] = ACTIONS(1277), - [sym_boolean] = ACTIONS(1279), - [sym_null] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1277), - [aux_sym_yield_expression_token1] = ACTIONS(1279), - [aux_sym_include_expression_token1] = ACTIONS(1279), - [aux_sym_include_once_expression_token1] = ACTIONS(1279), - [aux_sym_require_expression_token1] = ACTIONS(1279), - [aux_sym_require_once_expression_token1] = ACTIONS(1279), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1277), - }, - [544] = { - [sym_text_interpolation] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(1293), - [sym_name] = ACTIONS(1295), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1293), - [aux_sym_function_static_declaration_token1] = ACTIONS(1295), - [aux_sym_global_declaration_token1] = ACTIONS(1295), - [aux_sym_namespace_definition_token1] = ACTIONS(1295), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1295), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1295), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1295), - [anon_sym_BSLASH] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_RBRACE] = ACTIONS(1293), - [aux_sym_trait_declaration_token1] = ACTIONS(1295), - [aux_sym_interface_declaration_token1] = ACTIONS(1295), - [aux_sym_enum_declaration_token1] = ACTIONS(1295), - [aux_sym_enum_case_token1] = ACTIONS(1295), - [aux_sym_class_declaration_token1] = ACTIONS(1295), - [aux_sym_final_modifier_token1] = ACTIONS(1295), - [aux_sym_abstract_modifier_token1] = ACTIONS(1295), - [aux_sym_visibility_modifier_token1] = ACTIONS(1295), - [aux_sym_visibility_modifier_token2] = ACTIONS(1295), - [aux_sym_visibility_modifier_token3] = ACTIONS(1295), - [aux_sym_arrow_function_token1] = ACTIONS(1295), - [anon_sym_LPAREN] = ACTIONS(1293), - [aux_sym_cast_type_token1] = ACTIONS(1295), - [aux_sym_echo_statement_token1] = ACTIONS(1295), - [anon_sym_unset] = ACTIONS(1295), - [aux_sym_declare_statement_token1] = ACTIONS(1295), - [aux_sym_declare_statement_token2] = ACTIONS(1295), - [sym_float] = ACTIONS(1295), - [aux_sym_try_statement_token1] = ACTIONS(1295), - [aux_sym_goto_statement_token1] = ACTIONS(1295), - [aux_sym_continue_statement_token1] = ACTIONS(1295), - [aux_sym_break_statement_token1] = ACTIONS(1295), - [sym_integer] = ACTIONS(1295), - [aux_sym_return_statement_token1] = ACTIONS(1295), - [aux_sym_throw_expression_token1] = ACTIONS(1295), - [aux_sym_while_statement_token1] = ACTIONS(1295), - [aux_sym_while_statement_token2] = ACTIONS(1295), - [aux_sym_do_statement_token1] = ACTIONS(1295), - [aux_sym_for_statement_token1] = ACTIONS(1295), - [aux_sym_for_statement_token2] = ACTIONS(1295), - [aux_sym_foreach_statement_token1] = ACTIONS(1295), - [aux_sym_foreach_statement_token2] = ACTIONS(1295), - [aux_sym_if_statement_token1] = ACTIONS(1295), - [aux_sym_if_statement_token2] = ACTIONS(1295), - [aux_sym_else_if_clause_token1] = ACTIONS(1295), - [aux_sym_else_clause_token1] = ACTIONS(1295), - [aux_sym_match_expression_token1] = ACTIONS(1295), - [aux_sym_match_default_expression_token1] = ACTIONS(1295), - [aux_sym_switch_statement_token1] = ACTIONS(1295), - [aux_sym_switch_block_token1] = ACTIONS(1295), - [anon_sym_AT] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_BANG] = ACTIONS(1293), - [aux_sym_clone_expression_token1] = ACTIONS(1295), - [aux_sym_print_intrinsic_token1] = ACTIONS(1295), - [aux_sym_object_creation_expression_token1] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1293), - [sym_shell_command_expression] = ACTIONS(1293), - [aux_sym__list_destructing_token1] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1293), - [anon_sym_self] = ACTIONS(1295), - [anon_sym_parent] = ACTIONS(1295), - [anon_sym_POUND_LBRACK] = ACTIONS(1293), - [aux_sym_encapsed_string_token1] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1293), - [aux_sym_string_token1] = ACTIONS(1293), - [sym_boolean] = ACTIONS(1295), - [sym_null] = ACTIONS(1295), - [anon_sym_DOLLAR] = ACTIONS(1293), - [aux_sym_yield_expression_token1] = ACTIONS(1295), - [aux_sym_include_expression_token1] = ACTIONS(1295), - [aux_sym_include_once_expression_token1] = ACTIONS(1295), - [aux_sym_require_expression_token1] = ACTIONS(1295), - [aux_sym_require_once_expression_token1] = ACTIONS(1295), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1293), - }, - [545] = { - [sym_text_interpolation] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1297), - [sym_name] = ACTIONS(1299), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1297), - [aux_sym_function_static_declaration_token1] = ACTIONS(1299), - [aux_sym_global_declaration_token1] = ACTIONS(1299), - [aux_sym_namespace_definition_token1] = ACTIONS(1299), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1299), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1299), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1299), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_RBRACE] = ACTIONS(1297), - [aux_sym_trait_declaration_token1] = ACTIONS(1299), - [aux_sym_interface_declaration_token1] = ACTIONS(1299), - [aux_sym_enum_declaration_token1] = ACTIONS(1299), - [aux_sym_enum_case_token1] = ACTIONS(1299), - [aux_sym_class_declaration_token1] = ACTIONS(1299), - [aux_sym_final_modifier_token1] = ACTIONS(1299), - [aux_sym_abstract_modifier_token1] = ACTIONS(1299), - [aux_sym_visibility_modifier_token1] = ACTIONS(1299), - [aux_sym_visibility_modifier_token2] = ACTIONS(1299), - [aux_sym_visibility_modifier_token3] = ACTIONS(1299), - [aux_sym_arrow_function_token1] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1297), - [aux_sym_cast_type_token1] = ACTIONS(1299), - [aux_sym_echo_statement_token1] = ACTIONS(1299), - [anon_sym_unset] = ACTIONS(1299), - [aux_sym_declare_statement_token1] = ACTIONS(1299), - [aux_sym_declare_statement_token2] = ACTIONS(1299), - [sym_float] = ACTIONS(1299), - [aux_sym_try_statement_token1] = ACTIONS(1299), - [aux_sym_goto_statement_token1] = ACTIONS(1299), - [aux_sym_continue_statement_token1] = ACTIONS(1299), - [aux_sym_break_statement_token1] = ACTIONS(1299), - [sym_integer] = ACTIONS(1299), - [aux_sym_return_statement_token1] = ACTIONS(1299), - [aux_sym_throw_expression_token1] = ACTIONS(1299), - [aux_sym_while_statement_token1] = ACTIONS(1299), - [aux_sym_while_statement_token2] = ACTIONS(1299), - [aux_sym_do_statement_token1] = ACTIONS(1299), - [aux_sym_for_statement_token1] = ACTIONS(1299), - [aux_sym_for_statement_token2] = ACTIONS(1299), - [aux_sym_foreach_statement_token1] = ACTIONS(1299), - [aux_sym_foreach_statement_token2] = ACTIONS(1299), - [aux_sym_if_statement_token1] = ACTIONS(1299), - [aux_sym_if_statement_token2] = ACTIONS(1299), - [aux_sym_else_if_clause_token1] = ACTIONS(1299), - [aux_sym_else_clause_token1] = ACTIONS(1299), - [aux_sym_match_expression_token1] = ACTIONS(1299), - [aux_sym_match_default_expression_token1] = ACTIONS(1299), - [aux_sym_switch_statement_token1] = ACTIONS(1299), - [aux_sym_switch_block_token1] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [aux_sym_clone_expression_token1] = ACTIONS(1299), - [aux_sym_print_intrinsic_token1] = ACTIONS(1299), - [aux_sym_object_creation_expression_token1] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [sym_shell_command_expression] = ACTIONS(1297), - [aux_sym__list_destructing_token1] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_self] = ACTIONS(1299), - [anon_sym_parent] = ACTIONS(1299), - [anon_sym_POUND_LBRACK] = ACTIONS(1297), - [aux_sym_encapsed_string_token1] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [aux_sym_string_token1] = ACTIONS(1297), - [sym_boolean] = ACTIONS(1299), - [sym_null] = ACTIONS(1299), - [anon_sym_DOLLAR] = ACTIONS(1297), - [aux_sym_yield_expression_token1] = ACTIONS(1299), - [aux_sym_include_expression_token1] = ACTIONS(1299), - [aux_sym_include_once_expression_token1] = ACTIONS(1299), - [aux_sym_require_expression_token1] = ACTIONS(1299), - [aux_sym_require_once_expression_token1] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1297), - }, - [546] = { - [sym_text_interpolation] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1301), - [sym_name] = ACTIONS(1303), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1301), - [aux_sym_function_static_declaration_token1] = ACTIONS(1303), - [aux_sym_global_declaration_token1] = ACTIONS(1303), - [aux_sym_namespace_definition_token1] = ACTIONS(1303), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1303), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1303), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1303), - [anon_sym_BSLASH] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [aux_sym_trait_declaration_token1] = ACTIONS(1303), - [aux_sym_interface_declaration_token1] = ACTIONS(1303), - [aux_sym_enum_declaration_token1] = ACTIONS(1303), - [aux_sym_enum_case_token1] = ACTIONS(1303), - [aux_sym_class_declaration_token1] = ACTIONS(1303), - [aux_sym_final_modifier_token1] = ACTIONS(1303), - [aux_sym_abstract_modifier_token1] = ACTIONS(1303), - [aux_sym_visibility_modifier_token1] = ACTIONS(1303), - [aux_sym_visibility_modifier_token2] = ACTIONS(1303), - [aux_sym_visibility_modifier_token3] = ACTIONS(1303), - [aux_sym_arrow_function_token1] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1301), - [aux_sym_cast_type_token1] = ACTIONS(1303), - [aux_sym_echo_statement_token1] = ACTIONS(1303), - [anon_sym_unset] = ACTIONS(1303), - [aux_sym_declare_statement_token1] = ACTIONS(1303), - [aux_sym_declare_statement_token2] = ACTIONS(1303), - [sym_float] = ACTIONS(1303), - [aux_sym_try_statement_token1] = ACTIONS(1303), - [aux_sym_goto_statement_token1] = ACTIONS(1303), - [aux_sym_continue_statement_token1] = ACTIONS(1303), - [aux_sym_break_statement_token1] = ACTIONS(1303), - [sym_integer] = ACTIONS(1303), - [aux_sym_return_statement_token1] = ACTIONS(1303), - [aux_sym_throw_expression_token1] = ACTIONS(1303), - [aux_sym_while_statement_token1] = ACTIONS(1303), - [aux_sym_while_statement_token2] = ACTIONS(1303), - [aux_sym_do_statement_token1] = ACTIONS(1303), - [aux_sym_for_statement_token1] = ACTIONS(1303), - [aux_sym_for_statement_token2] = ACTIONS(1303), - [aux_sym_foreach_statement_token1] = ACTIONS(1303), - [aux_sym_foreach_statement_token2] = ACTIONS(1303), - [aux_sym_if_statement_token1] = ACTIONS(1303), - [aux_sym_if_statement_token2] = ACTIONS(1303), - [aux_sym_else_if_clause_token1] = ACTIONS(1303), - [aux_sym_else_clause_token1] = ACTIONS(1303), - [aux_sym_match_expression_token1] = ACTIONS(1303), - [aux_sym_match_default_expression_token1] = ACTIONS(1303), - [aux_sym_switch_statement_token1] = ACTIONS(1303), - [aux_sym_switch_block_token1] = ACTIONS(1303), - [anon_sym_AT] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_TILDE] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [aux_sym_clone_expression_token1] = ACTIONS(1303), - [aux_sym_print_intrinsic_token1] = ACTIONS(1303), - [aux_sym_object_creation_expression_token1] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [sym_shell_command_expression] = ACTIONS(1301), - [aux_sym__list_destructing_token1] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1301), - [anon_sym_self] = ACTIONS(1303), - [anon_sym_parent] = ACTIONS(1303), - [anon_sym_POUND_LBRACK] = ACTIONS(1301), - [aux_sym_encapsed_string_token1] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [aux_sym_string_token1] = ACTIONS(1301), - [sym_boolean] = ACTIONS(1303), - [sym_null] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(1301), - [aux_sym_yield_expression_token1] = ACTIONS(1303), - [aux_sym_include_expression_token1] = ACTIONS(1303), - [aux_sym_include_once_expression_token1] = ACTIONS(1303), - [aux_sym_require_expression_token1] = ACTIONS(1303), - [aux_sym_require_once_expression_token1] = ACTIONS(1303), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1301), - }, - [547] = { - [sym_text_interpolation] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1305), - [sym_name] = ACTIONS(1307), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1305), - [aux_sym_function_static_declaration_token1] = ACTIONS(1307), - [aux_sym_global_declaration_token1] = ACTIONS(1307), - [aux_sym_namespace_definition_token1] = ACTIONS(1307), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1307), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1307), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1307), - [anon_sym_BSLASH] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [aux_sym_trait_declaration_token1] = ACTIONS(1307), - [aux_sym_interface_declaration_token1] = ACTIONS(1307), - [aux_sym_enum_declaration_token1] = ACTIONS(1307), - [aux_sym_enum_case_token1] = ACTIONS(1307), - [aux_sym_class_declaration_token1] = ACTIONS(1307), - [aux_sym_final_modifier_token1] = ACTIONS(1307), - [aux_sym_abstract_modifier_token1] = ACTIONS(1307), - [aux_sym_visibility_modifier_token1] = ACTIONS(1307), - [aux_sym_visibility_modifier_token2] = ACTIONS(1307), - [aux_sym_visibility_modifier_token3] = ACTIONS(1307), - [aux_sym_arrow_function_token1] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1305), - [aux_sym_cast_type_token1] = ACTIONS(1307), - [aux_sym_echo_statement_token1] = ACTIONS(1307), - [anon_sym_unset] = ACTIONS(1307), - [aux_sym_declare_statement_token1] = ACTIONS(1307), - [aux_sym_declare_statement_token2] = ACTIONS(1307), - [sym_float] = ACTIONS(1307), - [aux_sym_try_statement_token1] = ACTIONS(1307), - [aux_sym_goto_statement_token1] = ACTIONS(1307), - [aux_sym_continue_statement_token1] = ACTIONS(1307), - [aux_sym_break_statement_token1] = ACTIONS(1307), - [sym_integer] = ACTIONS(1307), - [aux_sym_return_statement_token1] = ACTIONS(1307), - [aux_sym_throw_expression_token1] = ACTIONS(1307), - [aux_sym_while_statement_token1] = ACTIONS(1307), - [aux_sym_while_statement_token2] = ACTIONS(1307), - [aux_sym_do_statement_token1] = ACTIONS(1307), - [aux_sym_for_statement_token1] = ACTIONS(1307), - [aux_sym_for_statement_token2] = ACTIONS(1307), - [aux_sym_foreach_statement_token1] = ACTIONS(1307), - [aux_sym_foreach_statement_token2] = ACTIONS(1307), - [aux_sym_if_statement_token1] = ACTIONS(1307), - [aux_sym_if_statement_token2] = ACTIONS(1307), - [aux_sym_else_if_clause_token1] = ACTIONS(1307), - [aux_sym_else_clause_token1] = ACTIONS(1307), - [aux_sym_match_expression_token1] = ACTIONS(1307), - [aux_sym_match_default_expression_token1] = ACTIONS(1307), - [aux_sym_switch_statement_token1] = ACTIONS(1307), - [aux_sym_switch_block_token1] = ACTIONS(1307), - [anon_sym_AT] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_TILDE] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [aux_sym_clone_expression_token1] = ACTIONS(1307), - [aux_sym_print_intrinsic_token1] = ACTIONS(1307), - [aux_sym_object_creation_expression_token1] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [sym_shell_command_expression] = ACTIONS(1305), - [aux_sym__list_destructing_token1] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_self] = ACTIONS(1307), - [anon_sym_parent] = ACTIONS(1307), - [anon_sym_POUND_LBRACK] = ACTIONS(1305), - [aux_sym_encapsed_string_token1] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [aux_sym_string_token1] = ACTIONS(1305), - [sym_boolean] = ACTIONS(1307), - [sym_null] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1305), - [aux_sym_yield_expression_token1] = ACTIONS(1307), - [aux_sym_include_expression_token1] = ACTIONS(1307), - [aux_sym_include_once_expression_token1] = ACTIONS(1307), - [aux_sym_require_expression_token1] = ACTIONS(1307), - [aux_sym_require_once_expression_token1] = ACTIONS(1307), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1305), - }, - [548] = { - [sym_text_interpolation] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1309), - [sym_name] = ACTIONS(1311), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1309), - [aux_sym_function_static_declaration_token1] = ACTIONS(1311), - [aux_sym_global_declaration_token1] = ACTIONS(1311), - [aux_sym_namespace_definition_token1] = ACTIONS(1311), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1311), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1311), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1311), - [anon_sym_BSLASH] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [aux_sym_trait_declaration_token1] = ACTIONS(1311), - [aux_sym_interface_declaration_token1] = ACTIONS(1311), - [aux_sym_enum_declaration_token1] = ACTIONS(1311), - [aux_sym_enum_case_token1] = ACTIONS(1311), - [aux_sym_class_declaration_token1] = ACTIONS(1311), - [aux_sym_final_modifier_token1] = ACTIONS(1311), - [aux_sym_abstract_modifier_token1] = ACTIONS(1311), - [aux_sym_visibility_modifier_token1] = ACTIONS(1311), - [aux_sym_visibility_modifier_token2] = ACTIONS(1311), - [aux_sym_visibility_modifier_token3] = ACTIONS(1311), - [aux_sym_arrow_function_token1] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1309), - [aux_sym_cast_type_token1] = ACTIONS(1311), - [aux_sym_echo_statement_token1] = ACTIONS(1311), - [anon_sym_unset] = ACTIONS(1311), - [aux_sym_declare_statement_token1] = ACTIONS(1311), - [aux_sym_declare_statement_token2] = ACTIONS(1311), - [sym_float] = ACTIONS(1311), - [aux_sym_try_statement_token1] = ACTIONS(1311), - [aux_sym_goto_statement_token1] = ACTIONS(1311), - [aux_sym_continue_statement_token1] = ACTIONS(1311), - [aux_sym_break_statement_token1] = ACTIONS(1311), - [sym_integer] = ACTIONS(1311), - [aux_sym_return_statement_token1] = ACTIONS(1311), - [aux_sym_throw_expression_token1] = ACTIONS(1311), - [aux_sym_while_statement_token1] = ACTIONS(1311), - [aux_sym_while_statement_token2] = ACTIONS(1311), - [aux_sym_do_statement_token1] = ACTIONS(1311), - [aux_sym_for_statement_token1] = ACTIONS(1311), - [aux_sym_for_statement_token2] = ACTIONS(1311), - [aux_sym_foreach_statement_token1] = ACTIONS(1311), - [aux_sym_foreach_statement_token2] = ACTIONS(1311), - [aux_sym_if_statement_token1] = ACTIONS(1311), - [aux_sym_if_statement_token2] = ACTIONS(1311), - [aux_sym_else_if_clause_token1] = ACTIONS(1311), - [aux_sym_else_clause_token1] = ACTIONS(1311), - [aux_sym_match_expression_token1] = ACTIONS(1311), - [aux_sym_match_default_expression_token1] = ACTIONS(1311), - [aux_sym_switch_statement_token1] = ACTIONS(1311), - [aux_sym_switch_block_token1] = ACTIONS(1311), - [anon_sym_AT] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [aux_sym_clone_expression_token1] = ACTIONS(1311), - [aux_sym_print_intrinsic_token1] = ACTIONS(1311), - [aux_sym_object_creation_expression_token1] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [sym_shell_command_expression] = ACTIONS(1309), - [aux_sym__list_destructing_token1] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_self] = ACTIONS(1311), - [anon_sym_parent] = ACTIONS(1311), - [anon_sym_POUND_LBRACK] = ACTIONS(1309), - [aux_sym_encapsed_string_token1] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [aux_sym_string_token1] = ACTIONS(1309), - [sym_boolean] = ACTIONS(1311), - [sym_null] = ACTIONS(1311), - [anon_sym_DOLLAR] = ACTIONS(1309), - [aux_sym_yield_expression_token1] = ACTIONS(1311), - [aux_sym_include_expression_token1] = ACTIONS(1311), - [aux_sym_include_once_expression_token1] = ACTIONS(1311), - [aux_sym_require_expression_token1] = ACTIONS(1311), - [aux_sym_require_once_expression_token1] = ACTIONS(1311), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1309), - }, - [549] = { - [sym_text_interpolation] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1313), - [sym_name] = ACTIONS(1315), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1313), - [aux_sym_function_static_declaration_token1] = ACTIONS(1315), - [aux_sym_global_declaration_token1] = ACTIONS(1315), - [aux_sym_namespace_definition_token1] = ACTIONS(1315), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1315), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1315), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1315), - [anon_sym_BSLASH] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [aux_sym_trait_declaration_token1] = ACTIONS(1315), - [aux_sym_interface_declaration_token1] = ACTIONS(1315), - [aux_sym_enum_declaration_token1] = ACTIONS(1315), - [aux_sym_enum_case_token1] = ACTIONS(1315), - [aux_sym_class_declaration_token1] = ACTIONS(1315), - [aux_sym_final_modifier_token1] = ACTIONS(1315), - [aux_sym_abstract_modifier_token1] = ACTIONS(1315), - [aux_sym_visibility_modifier_token1] = ACTIONS(1315), - [aux_sym_visibility_modifier_token2] = ACTIONS(1315), - [aux_sym_visibility_modifier_token3] = ACTIONS(1315), - [aux_sym_arrow_function_token1] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1313), - [aux_sym_cast_type_token1] = ACTIONS(1315), - [aux_sym_echo_statement_token1] = ACTIONS(1315), - [anon_sym_unset] = ACTIONS(1315), - [aux_sym_declare_statement_token1] = ACTIONS(1315), - [aux_sym_declare_statement_token2] = ACTIONS(1315), - [sym_float] = ACTIONS(1315), - [aux_sym_try_statement_token1] = ACTIONS(1315), - [aux_sym_goto_statement_token1] = ACTIONS(1315), - [aux_sym_continue_statement_token1] = ACTIONS(1315), - [aux_sym_break_statement_token1] = ACTIONS(1315), - [sym_integer] = ACTIONS(1315), - [aux_sym_return_statement_token1] = ACTIONS(1315), - [aux_sym_throw_expression_token1] = ACTIONS(1315), - [aux_sym_while_statement_token1] = ACTIONS(1315), - [aux_sym_while_statement_token2] = ACTIONS(1315), - [aux_sym_do_statement_token1] = ACTIONS(1315), - [aux_sym_for_statement_token1] = ACTIONS(1315), - [aux_sym_for_statement_token2] = ACTIONS(1315), - [aux_sym_foreach_statement_token1] = ACTIONS(1315), - [aux_sym_foreach_statement_token2] = ACTIONS(1315), - [aux_sym_if_statement_token1] = ACTIONS(1315), - [aux_sym_if_statement_token2] = ACTIONS(1315), - [aux_sym_else_if_clause_token1] = ACTIONS(1315), - [aux_sym_else_clause_token1] = ACTIONS(1315), - [aux_sym_match_expression_token1] = ACTIONS(1315), - [aux_sym_match_default_expression_token1] = ACTIONS(1315), - [aux_sym_switch_statement_token1] = ACTIONS(1315), - [aux_sym_switch_block_token1] = ACTIONS(1315), - [anon_sym_AT] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [aux_sym_clone_expression_token1] = ACTIONS(1315), - [aux_sym_print_intrinsic_token1] = ACTIONS(1315), - [aux_sym_object_creation_expression_token1] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [sym_shell_command_expression] = ACTIONS(1313), - [aux_sym__list_destructing_token1] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_self] = ACTIONS(1315), - [anon_sym_parent] = ACTIONS(1315), - [anon_sym_POUND_LBRACK] = ACTIONS(1313), - [aux_sym_encapsed_string_token1] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [aux_sym_string_token1] = ACTIONS(1313), - [sym_boolean] = ACTIONS(1315), - [sym_null] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1313), - [aux_sym_yield_expression_token1] = ACTIONS(1315), - [aux_sym_include_expression_token1] = ACTIONS(1315), - [aux_sym_include_once_expression_token1] = ACTIONS(1315), - [aux_sym_require_expression_token1] = ACTIONS(1315), - [aux_sym_require_once_expression_token1] = ACTIONS(1315), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1313), - }, - [550] = { - [sym_text_interpolation] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(1317), - [sym_name] = ACTIONS(1319), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1317), - [aux_sym_function_static_declaration_token1] = ACTIONS(1319), - [aux_sym_global_declaration_token1] = ACTIONS(1319), - [aux_sym_namespace_definition_token1] = ACTIONS(1319), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1319), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1319), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1319), - [anon_sym_BSLASH] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [aux_sym_trait_declaration_token1] = ACTIONS(1319), - [aux_sym_interface_declaration_token1] = ACTIONS(1319), - [aux_sym_enum_declaration_token1] = ACTIONS(1319), - [aux_sym_enum_case_token1] = ACTIONS(1319), - [aux_sym_class_declaration_token1] = ACTIONS(1319), - [aux_sym_final_modifier_token1] = ACTIONS(1319), - [aux_sym_abstract_modifier_token1] = ACTIONS(1319), - [aux_sym_visibility_modifier_token1] = ACTIONS(1319), - [aux_sym_visibility_modifier_token2] = ACTIONS(1319), - [aux_sym_visibility_modifier_token3] = ACTIONS(1319), - [aux_sym_arrow_function_token1] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1317), - [aux_sym_cast_type_token1] = ACTIONS(1319), - [aux_sym_echo_statement_token1] = ACTIONS(1319), - [anon_sym_unset] = ACTIONS(1319), - [aux_sym_declare_statement_token1] = ACTIONS(1319), - [aux_sym_declare_statement_token2] = ACTIONS(1319), - [sym_float] = ACTIONS(1319), - [aux_sym_try_statement_token1] = ACTIONS(1319), - [aux_sym_goto_statement_token1] = ACTIONS(1319), - [aux_sym_continue_statement_token1] = ACTIONS(1319), - [aux_sym_break_statement_token1] = ACTIONS(1319), - [sym_integer] = ACTIONS(1319), - [aux_sym_return_statement_token1] = ACTIONS(1319), - [aux_sym_throw_expression_token1] = ACTIONS(1319), - [aux_sym_while_statement_token1] = ACTIONS(1319), - [aux_sym_while_statement_token2] = ACTIONS(1319), - [aux_sym_do_statement_token1] = ACTIONS(1319), - [aux_sym_for_statement_token1] = ACTIONS(1319), - [aux_sym_for_statement_token2] = ACTIONS(1319), - [aux_sym_foreach_statement_token1] = ACTIONS(1319), - [aux_sym_foreach_statement_token2] = ACTIONS(1319), - [aux_sym_if_statement_token1] = ACTIONS(1319), - [aux_sym_if_statement_token2] = ACTIONS(1319), - [aux_sym_else_if_clause_token1] = ACTIONS(1319), - [aux_sym_else_clause_token1] = ACTIONS(1319), - [aux_sym_match_expression_token1] = ACTIONS(1319), - [aux_sym_match_default_expression_token1] = ACTIONS(1319), - [aux_sym_switch_statement_token1] = ACTIONS(1319), - [aux_sym_switch_block_token1] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [aux_sym_clone_expression_token1] = ACTIONS(1319), - [aux_sym_print_intrinsic_token1] = ACTIONS(1319), - [aux_sym_object_creation_expression_token1] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [sym_shell_command_expression] = ACTIONS(1317), - [aux_sym__list_destructing_token1] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_self] = ACTIONS(1319), - [anon_sym_parent] = ACTIONS(1319), - [anon_sym_POUND_LBRACK] = ACTIONS(1317), - [aux_sym_encapsed_string_token1] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [aux_sym_string_token1] = ACTIONS(1317), - [sym_boolean] = ACTIONS(1319), - [sym_null] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1317), - [aux_sym_yield_expression_token1] = ACTIONS(1319), - [aux_sym_include_expression_token1] = ACTIONS(1319), - [aux_sym_include_once_expression_token1] = ACTIONS(1319), - [aux_sym_require_expression_token1] = ACTIONS(1319), - [aux_sym_require_once_expression_token1] = ACTIONS(1319), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1317), - }, - [551] = { - [sym_text_interpolation] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(1321), - [sym_name] = ACTIONS(1323), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1321), - [aux_sym_function_static_declaration_token1] = ACTIONS(1323), - [aux_sym_global_declaration_token1] = ACTIONS(1323), - [aux_sym_namespace_definition_token1] = ACTIONS(1323), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1323), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1323), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1323), - [anon_sym_BSLASH] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [aux_sym_trait_declaration_token1] = ACTIONS(1323), - [aux_sym_interface_declaration_token1] = ACTIONS(1323), - [aux_sym_enum_declaration_token1] = ACTIONS(1323), - [aux_sym_enum_case_token1] = ACTIONS(1323), - [aux_sym_class_declaration_token1] = ACTIONS(1323), - [aux_sym_final_modifier_token1] = ACTIONS(1323), - [aux_sym_abstract_modifier_token1] = ACTIONS(1323), - [aux_sym_visibility_modifier_token1] = ACTIONS(1323), - [aux_sym_visibility_modifier_token2] = ACTIONS(1323), - [aux_sym_visibility_modifier_token3] = ACTIONS(1323), - [aux_sym_arrow_function_token1] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1321), - [aux_sym_cast_type_token1] = ACTIONS(1323), - [aux_sym_echo_statement_token1] = ACTIONS(1323), - [anon_sym_unset] = ACTIONS(1323), - [aux_sym_declare_statement_token1] = ACTIONS(1323), - [aux_sym_declare_statement_token2] = ACTIONS(1323), - [sym_float] = ACTIONS(1323), - [aux_sym_try_statement_token1] = ACTIONS(1323), - [aux_sym_goto_statement_token1] = ACTIONS(1323), - [aux_sym_continue_statement_token1] = ACTIONS(1323), - [aux_sym_break_statement_token1] = ACTIONS(1323), - [sym_integer] = ACTIONS(1323), - [aux_sym_return_statement_token1] = ACTIONS(1323), - [aux_sym_throw_expression_token1] = ACTIONS(1323), - [aux_sym_while_statement_token1] = ACTIONS(1323), - [aux_sym_while_statement_token2] = ACTIONS(1323), - [aux_sym_do_statement_token1] = ACTIONS(1323), - [aux_sym_for_statement_token1] = ACTIONS(1323), - [aux_sym_for_statement_token2] = ACTIONS(1323), - [aux_sym_foreach_statement_token1] = ACTIONS(1323), - [aux_sym_foreach_statement_token2] = ACTIONS(1323), - [aux_sym_if_statement_token1] = ACTIONS(1323), - [aux_sym_if_statement_token2] = ACTIONS(1323), - [aux_sym_else_if_clause_token1] = ACTIONS(1323), - [aux_sym_else_clause_token1] = ACTIONS(1323), - [aux_sym_match_expression_token1] = ACTIONS(1323), - [aux_sym_match_default_expression_token1] = ACTIONS(1323), - [aux_sym_switch_statement_token1] = ACTIONS(1323), - [aux_sym_switch_block_token1] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [aux_sym_clone_expression_token1] = ACTIONS(1323), - [aux_sym_print_intrinsic_token1] = ACTIONS(1323), - [aux_sym_object_creation_expression_token1] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [sym_shell_command_expression] = ACTIONS(1321), - [aux_sym__list_destructing_token1] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_self] = ACTIONS(1323), - [anon_sym_parent] = ACTIONS(1323), - [anon_sym_POUND_LBRACK] = ACTIONS(1321), - [aux_sym_encapsed_string_token1] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [aux_sym_string_token1] = ACTIONS(1321), - [sym_boolean] = ACTIONS(1323), - [sym_null] = ACTIONS(1323), - [anon_sym_DOLLAR] = ACTIONS(1321), - [aux_sym_yield_expression_token1] = ACTIONS(1323), - [aux_sym_include_expression_token1] = ACTIONS(1323), - [aux_sym_include_once_expression_token1] = ACTIONS(1323), - [aux_sym_require_expression_token1] = ACTIONS(1323), - [aux_sym_require_once_expression_token1] = ACTIONS(1323), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1321), - }, - [552] = { - [sym_text_interpolation] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(1325), - [sym_name] = ACTIONS(1327), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1325), - [aux_sym_function_static_declaration_token1] = ACTIONS(1327), - [aux_sym_global_declaration_token1] = ACTIONS(1327), - [aux_sym_namespace_definition_token1] = ACTIONS(1327), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1327), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1327), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1327), - [anon_sym_BSLASH] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [aux_sym_trait_declaration_token1] = ACTIONS(1327), - [aux_sym_interface_declaration_token1] = ACTIONS(1327), - [aux_sym_enum_declaration_token1] = ACTIONS(1327), - [aux_sym_enum_case_token1] = ACTIONS(1327), - [aux_sym_class_declaration_token1] = ACTIONS(1327), - [aux_sym_final_modifier_token1] = ACTIONS(1327), - [aux_sym_abstract_modifier_token1] = ACTIONS(1327), - [aux_sym_visibility_modifier_token1] = ACTIONS(1327), - [aux_sym_visibility_modifier_token2] = ACTIONS(1327), - [aux_sym_visibility_modifier_token3] = ACTIONS(1327), - [aux_sym_arrow_function_token1] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1325), - [aux_sym_cast_type_token1] = ACTIONS(1327), - [aux_sym_echo_statement_token1] = ACTIONS(1327), - [anon_sym_unset] = ACTIONS(1327), - [aux_sym_declare_statement_token1] = ACTIONS(1327), - [aux_sym_declare_statement_token2] = ACTIONS(1327), - [sym_float] = ACTIONS(1327), - [aux_sym_try_statement_token1] = ACTIONS(1327), - [aux_sym_goto_statement_token1] = ACTIONS(1327), - [aux_sym_continue_statement_token1] = ACTIONS(1327), - [aux_sym_break_statement_token1] = ACTIONS(1327), - [sym_integer] = ACTIONS(1327), - [aux_sym_return_statement_token1] = ACTIONS(1327), - [aux_sym_throw_expression_token1] = ACTIONS(1327), - [aux_sym_while_statement_token1] = ACTIONS(1327), - [aux_sym_while_statement_token2] = ACTIONS(1327), - [aux_sym_do_statement_token1] = ACTIONS(1327), - [aux_sym_for_statement_token1] = ACTIONS(1327), - [aux_sym_for_statement_token2] = ACTIONS(1327), - [aux_sym_foreach_statement_token1] = ACTIONS(1327), - [aux_sym_foreach_statement_token2] = ACTIONS(1327), - [aux_sym_if_statement_token1] = ACTIONS(1327), - [aux_sym_if_statement_token2] = ACTIONS(1327), - [aux_sym_else_if_clause_token1] = ACTIONS(1327), - [aux_sym_else_clause_token1] = ACTIONS(1327), - [aux_sym_match_expression_token1] = ACTIONS(1327), - [aux_sym_match_default_expression_token1] = ACTIONS(1327), - [aux_sym_switch_statement_token1] = ACTIONS(1327), - [aux_sym_switch_block_token1] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [aux_sym_clone_expression_token1] = ACTIONS(1327), - [aux_sym_print_intrinsic_token1] = ACTIONS(1327), - [aux_sym_object_creation_expression_token1] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [sym_shell_command_expression] = ACTIONS(1325), - [aux_sym__list_destructing_token1] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_self] = ACTIONS(1327), - [anon_sym_parent] = ACTIONS(1327), - [anon_sym_POUND_LBRACK] = ACTIONS(1325), - [aux_sym_encapsed_string_token1] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [aux_sym_string_token1] = ACTIONS(1325), - [sym_boolean] = ACTIONS(1327), - [sym_null] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1325), - [aux_sym_yield_expression_token1] = ACTIONS(1327), - [aux_sym_include_expression_token1] = ACTIONS(1327), - [aux_sym_include_once_expression_token1] = ACTIONS(1327), - [aux_sym_require_expression_token1] = ACTIONS(1327), - [aux_sym_require_once_expression_token1] = ACTIONS(1327), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1325), - }, - [553] = { - [sym_text_interpolation] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(966), - [sym_name] = ACTIONS(968), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(966), - [aux_sym_function_static_declaration_token1] = ACTIONS(968), - [aux_sym_global_declaration_token1] = ACTIONS(968), - [aux_sym_namespace_definition_token1] = ACTIONS(968), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(968), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(968), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(968), - [anon_sym_BSLASH] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [aux_sym_trait_declaration_token1] = ACTIONS(968), - [aux_sym_interface_declaration_token1] = ACTIONS(968), - [aux_sym_enum_declaration_token1] = ACTIONS(968), - [aux_sym_enum_case_token1] = ACTIONS(968), - [aux_sym_class_declaration_token1] = ACTIONS(968), - [aux_sym_final_modifier_token1] = ACTIONS(968), - [aux_sym_abstract_modifier_token1] = ACTIONS(968), - [aux_sym_visibility_modifier_token1] = ACTIONS(968), - [aux_sym_visibility_modifier_token2] = ACTIONS(968), - [aux_sym_visibility_modifier_token3] = ACTIONS(968), - [aux_sym_arrow_function_token1] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(966), - [aux_sym_cast_type_token1] = ACTIONS(968), - [aux_sym_echo_statement_token1] = ACTIONS(968), - [anon_sym_unset] = ACTIONS(968), - [aux_sym_declare_statement_token1] = ACTIONS(968), - [aux_sym_declare_statement_token2] = ACTIONS(968), - [sym_float] = ACTIONS(968), - [aux_sym_try_statement_token1] = ACTIONS(968), - [aux_sym_goto_statement_token1] = ACTIONS(968), - [aux_sym_continue_statement_token1] = ACTIONS(968), - [aux_sym_break_statement_token1] = ACTIONS(968), - [sym_integer] = ACTIONS(968), - [aux_sym_return_statement_token1] = ACTIONS(968), - [aux_sym_throw_expression_token1] = ACTIONS(968), - [aux_sym_while_statement_token1] = ACTIONS(968), - [aux_sym_while_statement_token2] = ACTIONS(968), - [aux_sym_do_statement_token1] = ACTIONS(968), - [aux_sym_for_statement_token1] = ACTIONS(968), - [aux_sym_for_statement_token2] = ACTIONS(968), - [aux_sym_foreach_statement_token1] = ACTIONS(968), - [aux_sym_foreach_statement_token2] = ACTIONS(968), - [aux_sym_if_statement_token1] = ACTIONS(968), - [aux_sym_if_statement_token2] = ACTIONS(968), - [aux_sym_else_if_clause_token1] = ACTIONS(968), - [aux_sym_else_clause_token1] = ACTIONS(968), - [aux_sym_match_expression_token1] = ACTIONS(968), - [aux_sym_match_default_expression_token1] = ACTIONS(968), - [aux_sym_switch_statement_token1] = ACTIONS(968), - [aux_sym_switch_block_token1] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [aux_sym_clone_expression_token1] = ACTIONS(968), - [aux_sym_print_intrinsic_token1] = ACTIONS(968), - [aux_sym_object_creation_expression_token1] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(966), - [sym_shell_command_expression] = ACTIONS(966), - [aux_sym__list_destructing_token1] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_self] = ACTIONS(968), - [anon_sym_parent] = ACTIONS(968), - [anon_sym_POUND_LBRACK] = ACTIONS(966), - [aux_sym_encapsed_string_token1] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [aux_sym_string_token1] = ACTIONS(966), - [sym_boolean] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [aux_sym_yield_expression_token1] = ACTIONS(968), - [aux_sym_include_expression_token1] = ACTIONS(968), - [aux_sym_include_once_expression_token1] = ACTIONS(968), - [aux_sym_require_expression_token1] = ACTIONS(968), - [aux_sym_require_once_expression_token1] = ACTIONS(968), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(966), - }, - [554] = { - [sym_text_interpolation] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(1329), - [sym_name] = ACTIONS(1331), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1329), - [aux_sym_function_static_declaration_token1] = ACTIONS(1331), - [aux_sym_global_declaration_token1] = ACTIONS(1331), - [aux_sym_namespace_definition_token1] = ACTIONS(1331), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1331), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1331), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1331), - [anon_sym_BSLASH] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [aux_sym_trait_declaration_token1] = ACTIONS(1331), - [aux_sym_interface_declaration_token1] = ACTIONS(1331), - [aux_sym_enum_declaration_token1] = ACTIONS(1331), - [aux_sym_enum_case_token1] = ACTIONS(1331), - [aux_sym_class_declaration_token1] = ACTIONS(1331), - [aux_sym_final_modifier_token1] = ACTIONS(1331), - [aux_sym_abstract_modifier_token1] = ACTIONS(1331), - [aux_sym_visibility_modifier_token1] = ACTIONS(1331), - [aux_sym_visibility_modifier_token2] = ACTIONS(1331), - [aux_sym_visibility_modifier_token3] = ACTIONS(1331), - [aux_sym_arrow_function_token1] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1329), - [aux_sym_cast_type_token1] = ACTIONS(1331), - [aux_sym_echo_statement_token1] = ACTIONS(1331), - [anon_sym_unset] = ACTIONS(1331), - [aux_sym_declare_statement_token1] = ACTIONS(1331), - [aux_sym_declare_statement_token2] = ACTIONS(1331), - [sym_float] = ACTIONS(1331), - [aux_sym_try_statement_token1] = ACTIONS(1331), - [aux_sym_goto_statement_token1] = ACTIONS(1331), - [aux_sym_continue_statement_token1] = ACTIONS(1331), - [aux_sym_break_statement_token1] = ACTIONS(1331), - [sym_integer] = ACTIONS(1331), - [aux_sym_return_statement_token1] = ACTIONS(1331), - [aux_sym_throw_expression_token1] = ACTIONS(1331), - [aux_sym_while_statement_token1] = ACTIONS(1331), - [aux_sym_while_statement_token2] = ACTIONS(1331), - [aux_sym_do_statement_token1] = ACTIONS(1331), - [aux_sym_for_statement_token1] = ACTIONS(1331), - [aux_sym_for_statement_token2] = ACTIONS(1331), - [aux_sym_foreach_statement_token1] = ACTIONS(1331), - [aux_sym_foreach_statement_token2] = ACTIONS(1331), - [aux_sym_if_statement_token1] = ACTIONS(1331), - [aux_sym_if_statement_token2] = ACTIONS(1331), - [aux_sym_else_if_clause_token1] = ACTIONS(1331), - [aux_sym_else_clause_token1] = ACTIONS(1331), - [aux_sym_match_expression_token1] = ACTIONS(1331), - [aux_sym_match_default_expression_token1] = ACTIONS(1331), - [aux_sym_switch_statement_token1] = ACTIONS(1331), - [aux_sym_switch_block_token1] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [aux_sym_clone_expression_token1] = ACTIONS(1331), - [aux_sym_print_intrinsic_token1] = ACTIONS(1331), - [aux_sym_object_creation_expression_token1] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [sym_shell_command_expression] = ACTIONS(1329), - [aux_sym__list_destructing_token1] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_self] = ACTIONS(1331), - [anon_sym_parent] = ACTIONS(1331), - [anon_sym_POUND_LBRACK] = ACTIONS(1329), - [aux_sym_encapsed_string_token1] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [aux_sym_string_token1] = ACTIONS(1329), - [sym_boolean] = ACTIONS(1331), - [sym_null] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1329), - [aux_sym_yield_expression_token1] = ACTIONS(1331), - [aux_sym_include_expression_token1] = ACTIONS(1331), - [aux_sym_include_once_expression_token1] = ACTIONS(1331), - [aux_sym_require_expression_token1] = ACTIONS(1331), - [aux_sym_require_once_expression_token1] = ACTIONS(1331), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1329), - }, - [555] = { - [sym_text_interpolation] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1333), - [sym_name] = ACTIONS(1335), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1333), - [aux_sym_function_static_declaration_token1] = ACTIONS(1335), - [aux_sym_global_declaration_token1] = ACTIONS(1335), - [aux_sym_namespace_definition_token1] = ACTIONS(1335), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1335), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1335), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1335), - [anon_sym_BSLASH] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [aux_sym_trait_declaration_token1] = ACTIONS(1335), - [aux_sym_interface_declaration_token1] = ACTIONS(1335), - [aux_sym_enum_declaration_token1] = ACTIONS(1335), - [aux_sym_enum_case_token1] = ACTIONS(1335), - [aux_sym_class_declaration_token1] = ACTIONS(1335), - [aux_sym_final_modifier_token1] = ACTIONS(1335), - [aux_sym_abstract_modifier_token1] = ACTIONS(1335), - [aux_sym_visibility_modifier_token1] = ACTIONS(1335), - [aux_sym_visibility_modifier_token2] = ACTIONS(1335), - [aux_sym_visibility_modifier_token3] = ACTIONS(1335), - [aux_sym_arrow_function_token1] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1333), - [aux_sym_cast_type_token1] = ACTIONS(1335), - [aux_sym_echo_statement_token1] = ACTIONS(1335), - [anon_sym_unset] = ACTIONS(1335), - [aux_sym_declare_statement_token1] = ACTIONS(1335), - [aux_sym_declare_statement_token2] = ACTIONS(1335), - [sym_float] = ACTIONS(1335), - [aux_sym_try_statement_token1] = ACTIONS(1335), - [aux_sym_goto_statement_token1] = ACTIONS(1335), - [aux_sym_continue_statement_token1] = ACTIONS(1335), - [aux_sym_break_statement_token1] = ACTIONS(1335), - [sym_integer] = ACTIONS(1335), - [aux_sym_return_statement_token1] = ACTIONS(1335), - [aux_sym_throw_expression_token1] = ACTIONS(1335), - [aux_sym_while_statement_token1] = ACTIONS(1335), - [aux_sym_while_statement_token2] = ACTIONS(1335), - [aux_sym_do_statement_token1] = ACTIONS(1335), - [aux_sym_for_statement_token1] = ACTIONS(1335), - [aux_sym_for_statement_token2] = ACTIONS(1335), - [aux_sym_foreach_statement_token1] = ACTIONS(1335), - [aux_sym_foreach_statement_token2] = ACTIONS(1335), - [aux_sym_if_statement_token1] = ACTIONS(1335), - [aux_sym_if_statement_token2] = ACTIONS(1335), - [aux_sym_else_if_clause_token1] = ACTIONS(1335), - [aux_sym_else_clause_token1] = ACTIONS(1335), - [aux_sym_match_expression_token1] = ACTIONS(1335), - [aux_sym_match_default_expression_token1] = ACTIONS(1335), - [aux_sym_switch_statement_token1] = ACTIONS(1335), - [aux_sym_switch_block_token1] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [aux_sym_clone_expression_token1] = ACTIONS(1335), - [aux_sym_print_intrinsic_token1] = ACTIONS(1335), - [aux_sym_object_creation_expression_token1] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [sym_shell_command_expression] = ACTIONS(1333), - [aux_sym__list_destructing_token1] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_self] = ACTIONS(1335), - [anon_sym_parent] = ACTIONS(1335), - [anon_sym_POUND_LBRACK] = ACTIONS(1333), - [aux_sym_encapsed_string_token1] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [aux_sym_string_token1] = ACTIONS(1333), - [sym_boolean] = ACTIONS(1335), - [sym_null] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1333), - [aux_sym_yield_expression_token1] = ACTIONS(1335), - [aux_sym_include_expression_token1] = ACTIONS(1335), - [aux_sym_include_once_expression_token1] = ACTIONS(1335), - [aux_sym_require_expression_token1] = ACTIONS(1335), - [aux_sym_require_once_expression_token1] = ACTIONS(1335), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1333), - }, - [556] = { - [sym_text_interpolation] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1337), - [sym_name] = ACTIONS(1339), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1337), - [aux_sym_function_static_declaration_token1] = ACTIONS(1339), - [aux_sym_global_declaration_token1] = ACTIONS(1339), - [aux_sym_namespace_definition_token1] = ACTIONS(1339), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1339), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1339), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1339), - [anon_sym_BSLASH] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [aux_sym_trait_declaration_token1] = ACTIONS(1339), - [aux_sym_interface_declaration_token1] = ACTIONS(1339), - [aux_sym_enum_declaration_token1] = ACTIONS(1339), - [aux_sym_enum_case_token1] = ACTIONS(1339), - [aux_sym_class_declaration_token1] = ACTIONS(1339), - [aux_sym_final_modifier_token1] = ACTIONS(1339), - [aux_sym_abstract_modifier_token1] = ACTIONS(1339), - [aux_sym_visibility_modifier_token1] = ACTIONS(1339), - [aux_sym_visibility_modifier_token2] = ACTIONS(1339), - [aux_sym_visibility_modifier_token3] = ACTIONS(1339), - [aux_sym_arrow_function_token1] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1337), - [aux_sym_cast_type_token1] = ACTIONS(1339), - [aux_sym_echo_statement_token1] = ACTIONS(1339), - [anon_sym_unset] = ACTIONS(1339), - [aux_sym_declare_statement_token1] = ACTIONS(1339), - [aux_sym_declare_statement_token2] = ACTIONS(1339), - [sym_float] = ACTIONS(1339), - [aux_sym_try_statement_token1] = ACTIONS(1339), - [aux_sym_goto_statement_token1] = ACTIONS(1339), - [aux_sym_continue_statement_token1] = ACTIONS(1339), - [aux_sym_break_statement_token1] = ACTIONS(1339), - [sym_integer] = ACTIONS(1339), - [aux_sym_return_statement_token1] = ACTIONS(1339), - [aux_sym_throw_expression_token1] = ACTIONS(1339), - [aux_sym_while_statement_token1] = ACTIONS(1339), - [aux_sym_while_statement_token2] = ACTIONS(1339), - [aux_sym_do_statement_token1] = ACTIONS(1339), - [aux_sym_for_statement_token1] = ACTIONS(1339), - [aux_sym_for_statement_token2] = ACTIONS(1339), - [aux_sym_foreach_statement_token1] = ACTIONS(1339), - [aux_sym_foreach_statement_token2] = ACTIONS(1339), - [aux_sym_if_statement_token1] = ACTIONS(1339), - [aux_sym_if_statement_token2] = ACTIONS(1339), - [aux_sym_else_if_clause_token1] = ACTIONS(1339), - [aux_sym_else_clause_token1] = ACTIONS(1339), - [aux_sym_match_expression_token1] = ACTIONS(1339), - [aux_sym_match_default_expression_token1] = ACTIONS(1339), - [aux_sym_switch_statement_token1] = ACTIONS(1339), - [aux_sym_switch_block_token1] = ACTIONS(1339), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [aux_sym_clone_expression_token1] = ACTIONS(1339), - [aux_sym_print_intrinsic_token1] = ACTIONS(1339), - [aux_sym_object_creation_expression_token1] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [sym_shell_command_expression] = ACTIONS(1337), - [aux_sym__list_destructing_token1] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_self] = ACTIONS(1339), - [anon_sym_parent] = ACTIONS(1339), - [anon_sym_POUND_LBRACK] = ACTIONS(1337), - [aux_sym_encapsed_string_token1] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [aux_sym_string_token1] = ACTIONS(1337), - [sym_boolean] = ACTIONS(1339), - [sym_null] = ACTIONS(1339), - [anon_sym_DOLLAR] = ACTIONS(1337), - [aux_sym_yield_expression_token1] = ACTIONS(1339), - [aux_sym_include_expression_token1] = ACTIONS(1339), - [aux_sym_include_once_expression_token1] = ACTIONS(1339), - [aux_sym_require_expression_token1] = ACTIONS(1339), - [aux_sym_require_once_expression_token1] = ACTIONS(1339), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1337), - }, - [557] = { - [sym_text_interpolation] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1341), - [sym_name] = ACTIONS(1343), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1341), - [aux_sym_function_static_declaration_token1] = ACTIONS(1343), - [aux_sym_global_declaration_token1] = ACTIONS(1343), - [aux_sym_namespace_definition_token1] = ACTIONS(1343), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1343), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1343), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1343), - [anon_sym_BSLASH] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_RBRACE] = ACTIONS(1341), - [aux_sym_trait_declaration_token1] = ACTIONS(1343), - [aux_sym_interface_declaration_token1] = ACTIONS(1343), - [aux_sym_enum_declaration_token1] = ACTIONS(1343), - [aux_sym_enum_case_token1] = ACTIONS(1343), - [aux_sym_class_declaration_token1] = ACTIONS(1343), - [aux_sym_final_modifier_token1] = ACTIONS(1343), - [aux_sym_abstract_modifier_token1] = ACTIONS(1343), - [aux_sym_visibility_modifier_token1] = ACTIONS(1343), - [aux_sym_visibility_modifier_token2] = ACTIONS(1343), - [aux_sym_visibility_modifier_token3] = ACTIONS(1343), - [aux_sym_arrow_function_token1] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1341), - [aux_sym_cast_type_token1] = ACTIONS(1343), - [aux_sym_echo_statement_token1] = ACTIONS(1343), - [anon_sym_unset] = ACTIONS(1343), - [aux_sym_declare_statement_token1] = ACTIONS(1343), - [aux_sym_declare_statement_token2] = ACTIONS(1343), - [sym_float] = ACTIONS(1343), - [aux_sym_try_statement_token1] = ACTIONS(1343), - [aux_sym_goto_statement_token1] = ACTIONS(1343), - [aux_sym_continue_statement_token1] = ACTIONS(1343), - [aux_sym_break_statement_token1] = ACTIONS(1343), - [sym_integer] = ACTIONS(1343), - [aux_sym_return_statement_token1] = ACTIONS(1343), - [aux_sym_throw_expression_token1] = ACTIONS(1343), - [aux_sym_while_statement_token1] = ACTIONS(1343), - [aux_sym_while_statement_token2] = ACTIONS(1343), - [aux_sym_do_statement_token1] = ACTIONS(1343), - [aux_sym_for_statement_token1] = ACTIONS(1343), - [aux_sym_for_statement_token2] = ACTIONS(1343), - [aux_sym_foreach_statement_token1] = ACTIONS(1343), - [aux_sym_foreach_statement_token2] = ACTIONS(1343), - [aux_sym_if_statement_token1] = ACTIONS(1343), - [aux_sym_if_statement_token2] = ACTIONS(1343), - [aux_sym_else_if_clause_token1] = ACTIONS(1343), - [aux_sym_else_clause_token1] = ACTIONS(1343), - [aux_sym_match_expression_token1] = ACTIONS(1343), - [aux_sym_match_default_expression_token1] = ACTIONS(1343), - [aux_sym_switch_statement_token1] = ACTIONS(1343), - [aux_sym_switch_block_token1] = ACTIONS(1343), - [anon_sym_AT] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [aux_sym_clone_expression_token1] = ACTIONS(1343), - [aux_sym_print_intrinsic_token1] = ACTIONS(1343), - [aux_sym_object_creation_expression_token1] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [sym_shell_command_expression] = ACTIONS(1341), - [aux_sym__list_destructing_token1] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1341), - [anon_sym_self] = ACTIONS(1343), - [anon_sym_parent] = ACTIONS(1343), - [anon_sym_POUND_LBRACK] = ACTIONS(1341), - [aux_sym_encapsed_string_token1] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [aux_sym_string_token1] = ACTIONS(1341), - [sym_boolean] = ACTIONS(1343), - [sym_null] = ACTIONS(1343), - [anon_sym_DOLLAR] = ACTIONS(1341), - [aux_sym_yield_expression_token1] = ACTIONS(1343), - [aux_sym_include_expression_token1] = ACTIONS(1343), - [aux_sym_include_once_expression_token1] = ACTIONS(1343), - [aux_sym_require_expression_token1] = ACTIONS(1343), - [aux_sym_require_once_expression_token1] = ACTIONS(1343), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1341), - }, - [558] = { - [sym_text_interpolation] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(1345), - [sym_name] = ACTIONS(1347), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1345), - [aux_sym_function_static_declaration_token1] = ACTIONS(1347), - [aux_sym_global_declaration_token1] = ACTIONS(1347), - [aux_sym_namespace_definition_token1] = ACTIONS(1347), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1347), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1347), - [anon_sym_BSLASH] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_RBRACE] = ACTIONS(1345), - [aux_sym_trait_declaration_token1] = ACTIONS(1347), - [aux_sym_interface_declaration_token1] = ACTIONS(1347), - [aux_sym_enum_declaration_token1] = ACTIONS(1347), - [aux_sym_enum_case_token1] = ACTIONS(1347), - [aux_sym_class_declaration_token1] = ACTIONS(1347), - [aux_sym_final_modifier_token1] = ACTIONS(1347), - [aux_sym_abstract_modifier_token1] = ACTIONS(1347), - [aux_sym_visibility_modifier_token1] = ACTIONS(1347), - [aux_sym_visibility_modifier_token2] = ACTIONS(1347), - [aux_sym_visibility_modifier_token3] = ACTIONS(1347), - [aux_sym_arrow_function_token1] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1345), - [aux_sym_cast_type_token1] = ACTIONS(1347), - [aux_sym_echo_statement_token1] = ACTIONS(1347), - [anon_sym_unset] = ACTIONS(1347), - [aux_sym_declare_statement_token1] = ACTIONS(1347), - [aux_sym_declare_statement_token2] = ACTIONS(1347), - [sym_float] = ACTIONS(1347), - [aux_sym_try_statement_token1] = ACTIONS(1347), - [aux_sym_goto_statement_token1] = ACTIONS(1347), - [aux_sym_continue_statement_token1] = ACTIONS(1347), - [aux_sym_break_statement_token1] = ACTIONS(1347), - [sym_integer] = ACTIONS(1347), - [aux_sym_return_statement_token1] = ACTIONS(1347), - [aux_sym_throw_expression_token1] = ACTIONS(1347), - [aux_sym_while_statement_token1] = ACTIONS(1347), - [aux_sym_while_statement_token2] = ACTIONS(1347), - [aux_sym_do_statement_token1] = ACTIONS(1347), - [aux_sym_for_statement_token1] = ACTIONS(1347), - [aux_sym_for_statement_token2] = ACTIONS(1347), - [aux_sym_foreach_statement_token1] = ACTIONS(1347), - [aux_sym_foreach_statement_token2] = ACTIONS(1347), - [aux_sym_if_statement_token1] = ACTIONS(1347), - [aux_sym_if_statement_token2] = ACTIONS(1347), - [aux_sym_else_if_clause_token1] = ACTIONS(1347), - [aux_sym_else_clause_token1] = ACTIONS(1347), - [aux_sym_match_expression_token1] = ACTIONS(1347), - [aux_sym_match_default_expression_token1] = ACTIONS(1347), - [aux_sym_switch_statement_token1] = ACTIONS(1347), - [aux_sym_switch_block_token1] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [aux_sym_clone_expression_token1] = ACTIONS(1347), - [aux_sym_print_intrinsic_token1] = ACTIONS(1347), - [aux_sym_object_creation_expression_token1] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1345), - [sym_shell_command_expression] = ACTIONS(1345), - [aux_sym__list_destructing_token1] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1345), - [anon_sym_self] = ACTIONS(1347), - [anon_sym_parent] = ACTIONS(1347), - [anon_sym_POUND_LBRACK] = ACTIONS(1345), - [aux_sym_encapsed_string_token1] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [aux_sym_string_token1] = ACTIONS(1345), - [sym_boolean] = ACTIONS(1347), - [sym_null] = ACTIONS(1347), - [anon_sym_DOLLAR] = ACTIONS(1345), - [aux_sym_yield_expression_token1] = ACTIONS(1347), - [aux_sym_include_expression_token1] = ACTIONS(1347), - [aux_sym_include_once_expression_token1] = ACTIONS(1347), - [aux_sym_require_expression_token1] = ACTIONS(1347), - [aux_sym_require_once_expression_token1] = ACTIONS(1347), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1345), - }, - [559] = { - [sym_text_interpolation] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(1349), - [sym_name] = ACTIONS(1351), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1349), - [aux_sym_function_static_declaration_token1] = ACTIONS(1351), - [aux_sym_global_declaration_token1] = ACTIONS(1351), - [aux_sym_namespace_definition_token1] = ACTIONS(1351), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1351), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1351), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1351), - [anon_sym_BSLASH] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1349), - [aux_sym_trait_declaration_token1] = ACTIONS(1351), - [aux_sym_interface_declaration_token1] = ACTIONS(1351), - [aux_sym_enum_declaration_token1] = ACTIONS(1351), - [aux_sym_enum_case_token1] = ACTIONS(1351), - [aux_sym_class_declaration_token1] = ACTIONS(1351), - [aux_sym_final_modifier_token1] = ACTIONS(1351), - [aux_sym_abstract_modifier_token1] = ACTIONS(1351), - [aux_sym_visibility_modifier_token1] = ACTIONS(1351), - [aux_sym_visibility_modifier_token2] = ACTIONS(1351), - [aux_sym_visibility_modifier_token3] = ACTIONS(1351), - [aux_sym_arrow_function_token1] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1349), - [aux_sym_cast_type_token1] = ACTIONS(1351), - [aux_sym_echo_statement_token1] = ACTIONS(1351), - [anon_sym_unset] = ACTIONS(1351), - [aux_sym_declare_statement_token1] = ACTIONS(1351), - [aux_sym_declare_statement_token2] = ACTIONS(1351), - [sym_float] = ACTIONS(1351), - [aux_sym_try_statement_token1] = ACTIONS(1351), - [aux_sym_goto_statement_token1] = ACTIONS(1351), - [aux_sym_continue_statement_token1] = ACTIONS(1351), - [aux_sym_break_statement_token1] = ACTIONS(1351), - [sym_integer] = ACTIONS(1351), - [aux_sym_return_statement_token1] = ACTIONS(1351), - [aux_sym_throw_expression_token1] = ACTIONS(1351), - [aux_sym_while_statement_token1] = ACTIONS(1351), - [aux_sym_while_statement_token2] = ACTIONS(1351), - [aux_sym_do_statement_token1] = ACTIONS(1351), - [aux_sym_for_statement_token1] = ACTIONS(1351), - [aux_sym_for_statement_token2] = ACTIONS(1351), - [aux_sym_foreach_statement_token1] = ACTIONS(1351), - [aux_sym_foreach_statement_token2] = ACTIONS(1351), - [aux_sym_if_statement_token1] = ACTIONS(1351), - [aux_sym_if_statement_token2] = ACTIONS(1351), - [aux_sym_else_if_clause_token1] = ACTIONS(1351), - [aux_sym_else_clause_token1] = ACTIONS(1351), - [aux_sym_match_expression_token1] = ACTIONS(1351), - [aux_sym_match_default_expression_token1] = ACTIONS(1351), - [aux_sym_switch_statement_token1] = ACTIONS(1351), - [aux_sym_switch_block_token1] = ACTIONS(1351), - [anon_sym_AT] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [aux_sym_clone_expression_token1] = ACTIONS(1351), - [aux_sym_print_intrinsic_token1] = ACTIONS(1351), - [aux_sym_object_creation_expression_token1] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [sym_shell_command_expression] = ACTIONS(1349), - [aux_sym__list_destructing_token1] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1349), - [anon_sym_self] = ACTIONS(1351), - [anon_sym_parent] = ACTIONS(1351), - [anon_sym_POUND_LBRACK] = ACTIONS(1349), - [aux_sym_encapsed_string_token1] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [aux_sym_string_token1] = ACTIONS(1349), - [sym_boolean] = ACTIONS(1351), - [sym_null] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(1349), - [aux_sym_yield_expression_token1] = ACTIONS(1351), - [aux_sym_include_expression_token1] = ACTIONS(1351), - [aux_sym_include_once_expression_token1] = ACTIONS(1351), - [aux_sym_require_expression_token1] = ACTIONS(1351), - [aux_sym_require_once_expression_token1] = ACTIONS(1351), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1349), - }, - [560] = { - [sym_text_interpolation] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1353), - [sym_name] = ACTIONS(1355), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1353), - [aux_sym_function_static_declaration_token1] = ACTIONS(1355), - [aux_sym_global_declaration_token1] = ACTIONS(1355), - [aux_sym_namespace_definition_token1] = ACTIONS(1355), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1355), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1355), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1355), - [anon_sym_BSLASH] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1353), - [aux_sym_trait_declaration_token1] = ACTIONS(1355), - [aux_sym_interface_declaration_token1] = ACTIONS(1355), - [aux_sym_enum_declaration_token1] = ACTIONS(1355), - [aux_sym_enum_case_token1] = ACTIONS(1355), - [aux_sym_class_declaration_token1] = ACTIONS(1355), - [aux_sym_final_modifier_token1] = ACTIONS(1355), - [aux_sym_abstract_modifier_token1] = ACTIONS(1355), - [aux_sym_visibility_modifier_token1] = ACTIONS(1355), - [aux_sym_visibility_modifier_token2] = ACTIONS(1355), - [aux_sym_visibility_modifier_token3] = ACTIONS(1355), - [aux_sym_arrow_function_token1] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_cast_type_token1] = ACTIONS(1355), - [aux_sym_echo_statement_token1] = ACTIONS(1355), - [anon_sym_unset] = ACTIONS(1355), - [aux_sym_declare_statement_token1] = ACTIONS(1355), - [aux_sym_declare_statement_token2] = ACTIONS(1355), - [sym_float] = ACTIONS(1355), - [aux_sym_try_statement_token1] = ACTIONS(1355), - [aux_sym_goto_statement_token1] = ACTIONS(1355), - [aux_sym_continue_statement_token1] = ACTIONS(1355), - [aux_sym_break_statement_token1] = ACTIONS(1355), - [sym_integer] = ACTIONS(1355), - [aux_sym_return_statement_token1] = ACTIONS(1355), - [aux_sym_throw_expression_token1] = ACTIONS(1355), - [aux_sym_while_statement_token1] = ACTIONS(1355), - [aux_sym_while_statement_token2] = ACTIONS(1355), - [aux_sym_do_statement_token1] = ACTIONS(1355), - [aux_sym_for_statement_token1] = ACTIONS(1355), - [aux_sym_for_statement_token2] = ACTIONS(1355), - [aux_sym_foreach_statement_token1] = ACTIONS(1355), - [aux_sym_foreach_statement_token2] = ACTIONS(1355), - [aux_sym_if_statement_token1] = ACTIONS(1355), - [aux_sym_if_statement_token2] = ACTIONS(1355), - [aux_sym_else_if_clause_token1] = ACTIONS(1355), - [aux_sym_else_clause_token1] = ACTIONS(1355), - [aux_sym_match_expression_token1] = ACTIONS(1355), - [aux_sym_match_default_expression_token1] = ACTIONS(1355), - [aux_sym_switch_statement_token1] = ACTIONS(1355), - [aux_sym_switch_block_token1] = ACTIONS(1355), - [anon_sym_AT] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [aux_sym_clone_expression_token1] = ACTIONS(1355), - [aux_sym_print_intrinsic_token1] = ACTIONS(1355), - [aux_sym_object_creation_expression_token1] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [sym_shell_command_expression] = ACTIONS(1353), - [aux_sym__list_destructing_token1] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1353), - [anon_sym_self] = ACTIONS(1355), - [anon_sym_parent] = ACTIONS(1355), - [anon_sym_POUND_LBRACK] = ACTIONS(1353), - [aux_sym_encapsed_string_token1] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [aux_sym_string_token1] = ACTIONS(1353), - [sym_boolean] = ACTIONS(1355), - [sym_null] = ACTIONS(1355), - [anon_sym_DOLLAR] = ACTIONS(1353), - [aux_sym_yield_expression_token1] = ACTIONS(1355), - [aux_sym_include_expression_token1] = ACTIONS(1355), - [aux_sym_include_once_expression_token1] = ACTIONS(1355), - [aux_sym_require_expression_token1] = ACTIONS(1355), - [aux_sym_require_once_expression_token1] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1353), - }, - [561] = { - [sym_text_interpolation] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(1357), - [sym_name] = ACTIONS(1359), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1357), - [aux_sym_function_static_declaration_token1] = ACTIONS(1359), - [aux_sym_global_declaration_token1] = ACTIONS(1359), - [aux_sym_namespace_definition_token1] = ACTIONS(1359), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1359), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1359), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1359), - [anon_sym_BSLASH] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [aux_sym_trait_declaration_token1] = ACTIONS(1359), - [aux_sym_interface_declaration_token1] = ACTIONS(1359), - [aux_sym_enum_declaration_token1] = ACTIONS(1359), - [aux_sym_enum_case_token1] = ACTIONS(1359), - [aux_sym_class_declaration_token1] = ACTIONS(1359), - [aux_sym_final_modifier_token1] = ACTIONS(1359), - [aux_sym_abstract_modifier_token1] = ACTIONS(1359), - [aux_sym_visibility_modifier_token1] = ACTIONS(1359), - [aux_sym_visibility_modifier_token2] = ACTIONS(1359), - [aux_sym_visibility_modifier_token3] = ACTIONS(1359), - [aux_sym_arrow_function_token1] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1357), - [aux_sym_cast_type_token1] = ACTIONS(1359), - [aux_sym_echo_statement_token1] = ACTIONS(1359), - [anon_sym_unset] = ACTIONS(1359), - [aux_sym_declare_statement_token1] = ACTIONS(1359), - [aux_sym_declare_statement_token2] = ACTIONS(1359), - [sym_float] = ACTIONS(1359), - [aux_sym_try_statement_token1] = ACTIONS(1359), - [aux_sym_goto_statement_token1] = ACTIONS(1359), - [aux_sym_continue_statement_token1] = ACTIONS(1359), - [aux_sym_break_statement_token1] = ACTIONS(1359), - [sym_integer] = ACTIONS(1359), - [aux_sym_return_statement_token1] = ACTIONS(1359), - [aux_sym_throw_expression_token1] = ACTIONS(1359), - [aux_sym_while_statement_token1] = ACTIONS(1359), - [aux_sym_while_statement_token2] = ACTIONS(1359), - [aux_sym_do_statement_token1] = ACTIONS(1359), - [aux_sym_for_statement_token1] = ACTIONS(1359), - [aux_sym_for_statement_token2] = ACTIONS(1359), - [aux_sym_foreach_statement_token1] = ACTIONS(1359), - [aux_sym_foreach_statement_token2] = ACTIONS(1359), - [aux_sym_if_statement_token1] = ACTIONS(1359), - [aux_sym_if_statement_token2] = ACTIONS(1359), - [aux_sym_else_if_clause_token1] = ACTIONS(1359), - [aux_sym_else_clause_token1] = ACTIONS(1359), - [aux_sym_match_expression_token1] = ACTIONS(1359), - [aux_sym_match_default_expression_token1] = ACTIONS(1359), - [aux_sym_switch_statement_token1] = ACTIONS(1359), - [aux_sym_switch_block_token1] = ACTIONS(1359), - [anon_sym_AT] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [aux_sym_clone_expression_token1] = ACTIONS(1359), - [aux_sym_print_intrinsic_token1] = ACTIONS(1359), - [aux_sym_object_creation_expression_token1] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [sym_shell_command_expression] = ACTIONS(1357), - [aux_sym__list_destructing_token1] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_self] = ACTIONS(1359), - [anon_sym_parent] = ACTIONS(1359), - [anon_sym_POUND_LBRACK] = ACTIONS(1357), - [aux_sym_encapsed_string_token1] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [aux_sym_string_token1] = ACTIONS(1357), - [sym_boolean] = ACTIONS(1359), - [sym_null] = ACTIONS(1359), - [anon_sym_DOLLAR] = ACTIONS(1357), - [aux_sym_yield_expression_token1] = ACTIONS(1359), - [aux_sym_include_expression_token1] = ACTIONS(1359), - [aux_sym_include_once_expression_token1] = ACTIONS(1359), - [aux_sym_require_expression_token1] = ACTIONS(1359), - [aux_sym_require_once_expression_token1] = ACTIONS(1359), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1357), - }, - [562] = { - [sym_text_interpolation] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(1361), - [sym_name] = ACTIONS(1363), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1361), - [aux_sym_function_static_declaration_token1] = ACTIONS(1363), - [aux_sym_global_declaration_token1] = ACTIONS(1363), - [aux_sym_namespace_definition_token1] = ACTIONS(1363), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1363), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1363), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1363), - [anon_sym_BSLASH] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1361), - [anon_sym_RBRACE] = ACTIONS(1361), - [aux_sym_trait_declaration_token1] = ACTIONS(1363), - [aux_sym_interface_declaration_token1] = ACTIONS(1363), - [aux_sym_enum_declaration_token1] = ACTIONS(1363), - [aux_sym_enum_case_token1] = ACTIONS(1363), - [aux_sym_class_declaration_token1] = ACTIONS(1363), - [aux_sym_final_modifier_token1] = ACTIONS(1363), - [aux_sym_abstract_modifier_token1] = ACTIONS(1363), - [aux_sym_visibility_modifier_token1] = ACTIONS(1363), - [aux_sym_visibility_modifier_token2] = ACTIONS(1363), - [aux_sym_visibility_modifier_token3] = ACTIONS(1363), - [aux_sym_arrow_function_token1] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1361), - [aux_sym_cast_type_token1] = ACTIONS(1363), - [aux_sym_echo_statement_token1] = ACTIONS(1363), - [anon_sym_unset] = ACTIONS(1363), - [aux_sym_declare_statement_token1] = ACTIONS(1363), - [aux_sym_declare_statement_token2] = ACTIONS(1363), - [sym_float] = ACTIONS(1363), - [aux_sym_try_statement_token1] = ACTIONS(1363), - [aux_sym_goto_statement_token1] = ACTIONS(1363), - [aux_sym_continue_statement_token1] = ACTIONS(1363), - [aux_sym_break_statement_token1] = ACTIONS(1363), - [sym_integer] = ACTIONS(1363), - [aux_sym_return_statement_token1] = ACTIONS(1363), - [aux_sym_throw_expression_token1] = ACTIONS(1363), - [aux_sym_while_statement_token1] = ACTIONS(1363), - [aux_sym_while_statement_token2] = ACTIONS(1363), - [aux_sym_do_statement_token1] = ACTIONS(1363), - [aux_sym_for_statement_token1] = ACTIONS(1363), - [aux_sym_for_statement_token2] = ACTIONS(1363), - [aux_sym_foreach_statement_token1] = ACTIONS(1363), - [aux_sym_foreach_statement_token2] = ACTIONS(1363), - [aux_sym_if_statement_token1] = ACTIONS(1363), - [aux_sym_if_statement_token2] = ACTIONS(1363), - [aux_sym_else_if_clause_token1] = ACTIONS(1363), - [aux_sym_else_clause_token1] = ACTIONS(1363), - [aux_sym_match_expression_token1] = ACTIONS(1363), - [aux_sym_match_default_expression_token1] = ACTIONS(1363), - [aux_sym_switch_statement_token1] = ACTIONS(1363), - [aux_sym_switch_block_token1] = ACTIONS(1363), - [anon_sym_AT] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1361), - [aux_sym_clone_expression_token1] = ACTIONS(1363), - [aux_sym_print_intrinsic_token1] = ACTIONS(1363), - [aux_sym_object_creation_expression_token1] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1361), - [sym_shell_command_expression] = ACTIONS(1361), - [aux_sym__list_destructing_token1] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1361), - [anon_sym_self] = ACTIONS(1363), - [anon_sym_parent] = ACTIONS(1363), - [anon_sym_POUND_LBRACK] = ACTIONS(1361), - [aux_sym_encapsed_string_token1] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(1361), - [aux_sym_string_token1] = ACTIONS(1361), - [sym_boolean] = ACTIONS(1363), - [sym_null] = ACTIONS(1363), - [anon_sym_DOLLAR] = ACTIONS(1361), - [aux_sym_yield_expression_token1] = ACTIONS(1363), - [aux_sym_include_expression_token1] = ACTIONS(1363), - [aux_sym_include_once_expression_token1] = ACTIONS(1363), - [aux_sym_require_expression_token1] = ACTIONS(1363), - [aux_sym_require_once_expression_token1] = ACTIONS(1363), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1361), - }, - [563] = { - [sym_text_interpolation] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(1365), - [sym_name] = ACTIONS(1367), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1365), - [aux_sym_function_static_declaration_token1] = ACTIONS(1367), - [aux_sym_global_declaration_token1] = ACTIONS(1367), - [aux_sym_namespace_definition_token1] = ACTIONS(1367), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1367), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1367), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1367), - [anon_sym_BSLASH] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [aux_sym_trait_declaration_token1] = ACTIONS(1367), - [aux_sym_interface_declaration_token1] = ACTIONS(1367), - [aux_sym_enum_declaration_token1] = ACTIONS(1367), - [aux_sym_enum_case_token1] = ACTIONS(1367), - [aux_sym_class_declaration_token1] = ACTIONS(1367), - [aux_sym_final_modifier_token1] = ACTIONS(1367), - [aux_sym_abstract_modifier_token1] = ACTIONS(1367), - [aux_sym_visibility_modifier_token1] = ACTIONS(1367), - [aux_sym_visibility_modifier_token2] = ACTIONS(1367), - [aux_sym_visibility_modifier_token3] = ACTIONS(1367), - [aux_sym_arrow_function_token1] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1365), - [aux_sym_cast_type_token1] = ACTIONS(1367), - [aux_sym_echo_statement_token1] = ACTIONS(1367), - [anon_sym_unset] = ACTIONS(1367), - [aux_sym_declare_statement_token1] = ACTIONS(1367), - [aux_sym_declare_statement_token2] = ACTIONS(1367), - [sym_float] = ACTIONS(1367), - [aux_sym_try_statement_token1] = ACTIONS(1367), - [aux_sym_goto_statement_token1] = ACTIONS(1367), - [aux_sym_continue_statement_token1] = ACTIONS(1367), - [aux_sym_break_statement_token1] = ACTIONS(1367), - [sym_integer] = ACTIONS(1367), - [aux_sym_return_statement_token1] = ACTIONS(1367), - [aux_sym_throw_expression_token1] = ACTIONS(1367), - [aux_sym_while_statement_token1] = ACTIONS(1367), - [aux_sym_while_statement_token2] = ACTIONS(1367), - [aux_sym_do_statement_token1] = ACTIONS(1367), - [aux_sym_for_statement_token1] = ACTIONS(1367), - [aux_sym_for_statement_token2] = ACTIONS(1367), - [aux_sym_foreach_statement_token1] = ACTIONS(1367), - [aux_sym_foreach_statement_token2] = ACTIONS(1367), - [aux_sym_if_statement_token1] = ACTIONS(1367), - [aux_sym_if_statement_token2] = ACTIONS(1367), - [aux_sym_else_if_clause_token1] = ACTIONS(1367), - [aux_sym_else_clause_token1] = ACTIONS(1367), - [aux_sym_match_expression_token1] = ACTIONS(1367), - [aux_sym_match_default_expression_token1] = ACTIONS(1367), - [aux_sym_switch_statement_token1] = ACTIONS(1367), - [aux_sym_switch_block_token1] = ACTIONS(1367), - [anon_sym_AT] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [aux_sym_clone_expression_token1] = ACTIONS(1367), - [aux_sym_print_intrinsic_token1] = ACTIONS(1367), - [aux_sym_object_creation_expression_token1] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [sym_shell_command_expression] = ACTIONS(1365), - [aux_sym__list_destructing_token1] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_self] = ACTIONS(1367), - [anon_sym_parent] = ACTIONS(1367), - [anon_sym_POUND_LBRACK] = ACTIONS(1365), - [aux_sym_encapsed_string_token1] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [aux_sym_string_token1] = ACTIONS(1365), - [sym_boolean] = ACTIONS(1367), - [sym_null] = ACTIONS(1367), - [anon_sym_DOLLAR] = ACTIONS(1365), - [aux_sym_yield_expression_token1] = ACTIONS(1367), - [aux_sym_include_expression_token1] = ACTIONS(1367), - [aux_sym_include_once_expression_token1] = ACTIONS(1367), - [aux_sym_require_expression_token1] = ACTIONS(1367), - [aux_sym_require_once_expression_token1] = ACTIONS(1367), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1365), - }, - [564] = { - [sym_text_interpolation] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(1369), - [sym_name] = ACTIONS(1371), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1369), - [aux_sym_function_static_declaration_token1] = ACTIONS(1371), - [aux_sym_global_declaration_token1] = ACTIONS(1371), - [aux_sym_namespace_definition_token1] = ACTIONS(1371), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1371), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1371), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1371), - [anon_sym_BSLASH] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [aux_sym_trait_declaration_token1] = ACTIONS(1371), - [aux_sym_interface_declaration_token1] = ACTIONS(1371), - [aux_sym_enum_declaration_token1] = ACTIONS(1371), - [aux_sym_enum_case_token1] = ACTIONS(1371), - [aux_sym_class_declaration_token1] = ACTIONS(1371), - [aux_sym_final_modifier_token1] = ACTIONS(1371), - [aux_sym_abstract_modifier_token1] = ACTIONS(1371), - [aux_sym_visibility_modifier_token1] = ACTIONS(1371), - [aux_sym_visibility_modifier_token2] = ACTIONS(1371), - [aux_sym_visibility_modifier_token3] = ACTIONS(1371), - [aux_sym_arrow_function_token1] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1369), - [aux_sym_cast_type_token1] = ACTIONS(1371), - [aux_sym_echo_statement_token1] = ACTIONS(1371), - [anon_sym_unset] = ACTIONS(1371), - [aux_sym_declare_statement_token1] = ACTIONS(1371), - [aux_sym_declare_statement_token2] = ACTIONS(1371), - [sym_float] = ACTIONS(1371), - [aux_sym_try_statement_token1] = ACTIONS(1371), - [aux_sym_goto_statement_token1] = ACTIONS(1371), - [aux_sym_continue_statement_token1] = ACTIONS(1371), - [aux_sym_break_statement_token1] = ACTIONS(1371), - [sym_integer] = ACTIONS(1371), - [aux_sym_return_statement_token1] = ACTIONS(1371), - [aux_sym_throw_expression_token1] = ACTIONS(1371), - [aux_sym_while_statement_token1] = ACTIONS(1371), - [aux_sym_while_statement_token2] = ACTIONS(1371), - [aux_sym_do_statement_token1] = ACTIONS(1371), - [aux_sym_for_statement_token1] = ACTIONS(1371), - [aux_sym_for_statement_token2] = ACTIONS(1371), - [aux_sym_foreach_statement_token1] = ACTIONS(1371), - [aux_sym_foreach_statement_token2] = ACTIONS(1371), - [aux_sym_if_statement_token1] = ACTIONS(1371), - [aux_sym_if_statement_token2] = ACTIONS(1371), - [aux_sym_else_if_clause_token1] = ACTIONS(1371), - [aux_sym_else_clause_token1] = ACTIONS(1371), - [aux_sym_match_expression_token1] = ACTIONS(1371), - [aux_sym_match_default_expression_token1] = ACTIONS(1371), - [aux_sym_switch_statement_token1] = ACTIONS(1371), - [aux_sym_switch_block_token1] = ACTIONS(1371), - [anon_sym_AT] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [aux_sym_clone_expression_token1] = ACTIONS(1371), - [aux_sym_print_intrinsic_token1] = ACTIONS(1371), - [aux_sym_object_creation_expression_token1] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1369), - [sym_shell_command_expression] = ACTIONS(1369), - [aux_sym__list_destructing_token1] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_self] = ACTIONS(1371), - [anon_sym_parent] = ACTIONS(1371), - [anon_sym_POUND_LBRACK] = ACTIONS(1369), - [aux_sym_encapsed_string_token1] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [aux_sym_string_token1] = ACTIONS(1369), - [sym_boolean] = ACTIONS(1371), - [sym_null] = ACTIONS(1371), - [anon_sym_DOLLAR] = ACTIONS(1369), - [aux_sym_yield_expression_token1] = ACTIONS(1371), - [aux_sym_include_expression_token1] = ACTIONS(1371), - [aux_sym_include_once_expression_token1] = ACTIONS(1371), - [aux_sym_require_expression_token1] = ACTIONS(1371), - [aux_sym_require_once_expression_token1] = ACTIONS(1371), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1369), - }, - [565] = { - [sym_text_interpolation] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(1373), - [sym_name] = ACTIONS(1375), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1373), - [aux_sym_function_static_declaration_token1] = ACTIONS(1375), - [aux_sym_global_declaration_token1] = ACTIONS(1375), - [aux_sym_namespace_definition_token1] = ACTIONS(1375), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1375), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1375), - [anon_sym_BSLASH] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(1373), - [aux_sym_trait_declaration_token1] = ACTIONS(1375), - [aux_sym_interface_declaration_token1] = ACTIONS(1375), - [aux_sym_enum_declaration_token1] = ACTIONS(1375), - [aux_sym_enum_case_token1] = ACTIONS(1375), - [aux_sym_class_declaration_token1] = ACTIONS(1375), - [aux_sym_final_modifier_token1] = ACTIONS(1375), - [aux_sym_abstract_modifier_token1] = ACTIONS(1375), - [aux_sym_visibility_modifier_token1] = ACTIONS(1375), - [aux_sym_visibility_modifier_token2] = ACTIONS(1375), - [aux_sym_visibility_modifier_token3] = ACTIONS(1375), - [aux_sym_arrow_function_token1] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_cast_type_token1] = ACTIONS(1375), - [aux_sym_echo_statement_token1] = ACTIONS(1375), - [anon_sym_unset] = ACTIONS(1375), - [aux_sym_declare_statement_token1] = ACTIONS(1375), - [aux_sym_declare_statement_token2] = ACTIONS(1375), - [sym_float] = ACTIONS(1375), - [aux_sym_try_statement_token1] = ACTIONS(1375), - [aux_sym_goto_statement_token1] = ACTIONS(1375), - [aux_sym_continue_statement_token1] = ACTIONS(1375), - [aux_sym_break_statement_token1] = ACTIONS(1375), - [sym_integer] = ACTIONS(1375), - [aux_sym_return_statement_token1] = ACTIONS(1375), - [aux_sym_throw_expression_token1] = ACTIONS(1375), - [aux_sym_while_statement_token1] = ACTIONS(1375), - [aux_sym_while_statement_token2] = ACTIONS(1375), - [aux_sym_do_statement_token1] = ACTIONS(1375), - [aux_sym_for_statement_token1] = ACTIONS(1375), - [aux_sym_for_statement_token2] = ACTIONS(1375), - [aux_sym_foreach_statement_token1] = ACTIONS(1375), - [aux_sym_foreach_statement_token2] = ACTIONS(1375), - [aux_sym_if_statement_token1] = ACTIONS(1375), - [aux_sym_if_statement_token2] = ACTIONS(1375), - [aux_sym_else_if_clause_token1] = ACTIONS(1375), - [aux_sym_else_clause_token1] = ACTIONS(1375), - [aux_sym_match_expression_token1] = ACTIONS(1375), - [aux_sym_match_default_expression_token1] = ACTIONS(1375), - [aux_sym_switch_statement_token1] = ACTIONS(1375), - [aux_sym_switch_block_token1] = ACTIONS(1375), - [anon_sym_AT] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1373), - [aux_sym_clone_expression_token1] = ACTIONS(1375), - [aux_sym_print_intrinsic_token1] = ACTIONS(1375), - [aux_sym_object_creation_expression_token1] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [sym_shell_command_expression] = ACTIONS(1373), - [aux_sym__list_destructing_token1] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1373), - [anon_sym_self] = ACTIONS(1375), - [anon_sym_parent] = ACTIONS(1375), - [anon_sym_POUND_LBRACK] = ACTIONS(1373), - [aux_sym_encapsed_string_token1] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [aux_sym_string_token1] = ACTIONS(1373), - [sym_boolean] = ACTIONS(1375), - [sym_null] = ACTIONS(1375), - [anon_sym_DOLLAR] = ACTIONS(1373), - [aux_sym_yield_expression_token1] = ACTIONS(1375), - [aux_sym_include_expression_token1] = ACTIONS(1375), - [aux_sym_include_once_expression_token1] = ACTIONS(1375), - [aux_sym_require_expression_token1] = ACTIONS(1375), - [aux_sym_require_once_expression_token1] = ACTIONS(1375), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1373), - }, - [566] = { - [sym_text_interpolation] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(1365), - [sym_name] = ACTIONS(1367), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1365), - [aux_sym_function_static_declaration_token1] = ACTIONS(1367), - [aux_sym_global_declaration_token1] = ACTIONS(1367), - [aux_sym_namespace_definition_token1] = ACTIONS(1367), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1367), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1367), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1367), - [anon_sym_BSLASH] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [aux_sym_trait_declaration_token1] = ACTIONS(1367), - [aux_sym_interface_declaration_token1] = ACTIONS(1367), - [aux_sym_enum_declaration_token1] = ACTIONS(1367), - [aux_sym_enum_case_token1] = ACTIONS(1367), - [aux_sym_class_declaration_token1] = ACTIONS(1367), - [aux_sym_final_modifier_token1] = ACTIONS(1367), - [aux_sym_abstract_modifier_token1] = ACTIONS(1367), - [aux_sym_visibility_modifier_token1] = ACTIONS(1367), - [aux_sym_visibility_modifier_token2] = ACTIONS(1367), - [aux_sym_visibility_modifier_token3] = ACTIONS(1367), - [aux_sym_arrow_function_token1] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1365), - [aux_sym_cast_type_token1] = ACTIONS(1367), - [aux_sym_echo_statement_token1] = ACTIONS(1367), - [anon_sym_unset] = ACTIONS(1367), - [aux_sym_declare_statement_token1] = ACTIONS(1367), - [aux_sym_declare_statement_token2] = ACTIONS(1367), - [sym_float] = ACTIONS(1367), - [aux_sym_try_statement_token1] = ACTIONS(1367), - [aux_sym_goto_statement_token1] = ACTIONS(1367), - [aux_sym_continue_statement_token1] = ACTIONS(1367), - [aux_sym_break_statement_token1] = ACTIONS(1367), - [sym_integer] = ACTIONS(1367), - [aux_sym_return_statement_token1] = ACTIONS(1367), - [aux_sym_throw_expression_token1] = ACTIONS(1367), - [aux_sym_while_statement_token1] = ACTIONS(1367), - [aux_sym_while_statement_token2] = ACTIONS(1367), - [aux_sym_do_statement_token1] = ACTIONS(1367), - [aux_sym_for_statement_token1] = ACTIONS(1367), - [aux_sym_for_statement_token2] = ACTIONS(1367), - [aux_sym_foreach_statement_token1] = ACTIONS(1367), - [aux_sym_foreach_statement_token2] = ACTIONS(1367), - [aux_sym_if_statement_token1] = ACTIONS(1367), - [aux_sym_if_statement_token2] = ACTIONS(1367), - [aux_sym_else_if_clause_token1] = ACTIONS(1367), - [aux_sym_else_clause_token1] = ACTIONS(1367), - [aux_sym_match_expression_token1] = ACTIONS(1367), - [aux_sym_match_default_expression_token1] = ACTIONS(1367), - [aux_sym_switch_statement_token1] = ACTIONS(1367), - [aux_sym_switch_block_token1] = ACTIONS(1367), - [anon_sym_AT] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [aux_sym_clone_expression_token1] = ACTIONS(1367), - [aux_sym_print_intrinsic_token1] = ACTIONS(1367), - [aux_sym_object_creation_expression_token1] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [sym_shell_command_expression] = ACTIONS(1365), - [aux_sym__list_destructing_token1] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_self] = ACTIONS(1367), - [anon_sym_parent] = ACTIONS(1367), - [anon_sym_POUND_LBRACK] = ACTIONS(1365), - [aux_sym_encapsed_string_token1] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [aux_sym_string_token1] = ACTIONS(1365), - [sym_boolean] = ACTIONS(1367), - [sym_null] = ACTIONS(1367), - [anon_sym_DOLLAR] = ACTIONS(1365), - [aux_sym_yield_expression_token1] = ACTIONS(1367), - [aux_sym_include_expression_token1] = ACTIONS(1367), - [aux_sym_include_once_expression_token1] = ACTIONS(1367), - [aux_sym_require_expression_token1] = ACTIONS(1367), - [aux_sym_require_once_expression_token1] = ACTIONS(1367), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1365), - }, - [567] = { - [sym_text_interpolation] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(1377), - [sym_name] = ACTIONS(1379), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1377), - [aux_sym_function_static_declaration_token1] = ACTIONS(1379), - [aux_sym_global_declaration_token1] = ACTIONS(1379), - [aux_sym_namespace_definition_token1] = ACTIONS(1379), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1379), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1379), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1379), - [anon_sym_BSLASH] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_RBRACE] = ACTIONS(1377), - [aux_sym_trait_declaration_token1] = ACTIONS(1379), - [aux_sym_interface_declaration_token1] = ACTIONS(1379), - [aux_sym_enum_declaration_token1] = ACTIONS(1379), - [aux_sym_enum_case_token1] = ACTIONS(1379), - [aux_sym_class_declaration_token1] = ACTIONS(1379), - [aux_sym_final_modifier_token1] = ACTIONS(1379), - [aux_sym_abstract_modifier_token1] = ACTIONS(1379), - [aux_sym_visibility_modifier_token1] = ACTIONS(1379), - [aux_sym_visibility_modifier_token2] = ACTIONS(1379), - [aux_sym_visibility_modifier_token3] = ACTIONS(1379), - [aux_sym_arrow_function_token1] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1377), - [aux_sym_cast_type_token1] = ACTIONS(1379), - [aux_sym_echo_statement_token1] = ACTIONS(1379), - [anon_sym_unset] = ACTIONS(1379), - [aux_sym_declare_statement_token1] = ACTIONS(1379), - [aux_sym_declare_statement_token2] = ACTIONS(1379), - [sym_float] = ACTIONS(1379), - [aux_sym_try_statement_token1] = ACTIONS(1379), - [aux_sym_goto_statement_token1] = ACTIONS(1379), - [aux_sym_continue_statement_token1] = ACTIONS(1379), - [aux_sym_break_statement_token1] = ACTIONS(1379), - [sym_integer] = ACTIONS(1379), - [aux_sym_return_statement_token1] = ACTIONS(1379), - [aux_sym_throw_expression_token1] = ACTIONS(1379), - [aux_sym_while_statement_token1] = ACTIONS(1379), - [aux_sym_while_statement_token2] = ACTIONS(1379), - [aux_sym_do_statement_token1] = ACTIONS(1379), - [aux_sym_for_statement_token1] = ACTIONS(1379), - [aux_sym_for_statement_token2] = ACTIONS(1379), - [aux_sym_foreach_statement_token1] = ACTIONS(1379), - [aux_sym_foreach_statement_token2] = ACTIONS(1379), - [aux_sym_if_statement_token1] = ACTIONS(1379), - [aux_sym_if_statement_token2] = ACTIONS(1379), - [aux_sym_else_if_clause_token1] = ACTIONS(1379), - [aux_sym_else_clause_token1] = ACTIONS(1379), - [aux_sym_match_expression_token1] = ACTIONS(1379), - [aux_sym_match_default_expression_token1] = ACTIONS(1379), - [aux_sym_switch_statement_token1] = ACTIONS(1379), - [aux_sym_switch_block_token1] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1377), - [aux_sym_clone_expression_token1] = ACTIONS(1379), - [aux_sym_print_intrinsic_token1] = ACTIONS(1379), - [aux_sym_object_creation_expression_token1] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [sym_shell_command_expression] = ACTIONS(1377), - [aux_sym__list_destructing_token1] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_self] = ACTIONS(1379), - [anon_sym_parent] = ACTIONS(1379), - [anon_sym_POUND_LBRACK] = ACTIONS(1377), - [aux_sym_encapsed_string_token1] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(1377), - [anon_sym_SQUOTE] = ACTIONS(1377), - [aux_sym_string_token1] = ACTIONS(1377), - [sym_boolean] = ACTIONS(1379), - [sym_null] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(1377), - [aux_sym_yield_expression_token1] = ACTIONS(1379), - [aux_sym_include_expression_token1] = ACTIONS(1379), - [aux_sym_include_once_expression_token1] = ACTIONS(1379), - [aux_sym_require_expression_token1] = ACTIONS(1379), - [aux_sym_require_once_expression_token1] = ACTIONS(1379), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1377), - }, - [568] = { - [sym_text_interpolation] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1381), - [sym_name] = ACTIONS(1383), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1381), - [aux_sym_function_static_declaration_token1] = ACTIONS(1383), - [aux_sym_global_declaration_token1] = ACTIONS(1383), - [aux_sym_namespace_definition_token1] = ACTIONS(1383), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1383), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1383), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1383), - [anon_sym_BSLASH] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1381), - [aux_sym_trait_declaration_token1] = ACTIONS(1383), - [aux_sym_interface_declaration_token1] = ACTIONS(1383), - [aux_sym_enum_declaration_token1] = ACTIONS(1383), - [aux_sym_enum_case_token1] = ACTIONS(1383), - [aux_sym_class_declaration_token1] = ACTIONS(1383), - [aux_sym_final_modifier_token1] = ACTIONS(1383), - [aux_sym_abstract_modifier_token1] = ACTIONS(1383), - [aux_sym_visibility_modifier_token1] = ACTIONS(1383), - [aux_sym_visibility_modifier_token2] = ACTIONS(1383), - [aux_sym_visibility_modifier_token3] = ACTIONS(1383), - [aux_sym_arrow_function_token1] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1381), - [aux_sym_cast_type_token1] = ACTIONS(1383), - [aux_sym_echo_statement_token1] = ACTIONS(1383), - [anon_sym_unset] = ACTIONS(1383), - [aux_sym_declare_statement_token1] = ACTIONS(1383), - [aux_sym_declare_statement_token2] = ACTIONS(1383), - [sym_float] = ACTIONS(1383), - [aux_sym_try_statement_token1] = ACTIONS(1383), - [aux_sym_goto_statement_token1] = ACTIONS(1383), - [aux_sym_continue_statement_token1] = ACTIONS(1383), - [aux_sym_break_statement_token1] = ACTIONS(1383), - [sym_integer] = ACTIONS(1383), - [aux_sym_return_statement_token1] = ACTIONS(1383), - [aux_sym_throw_expression_token1] = ACTIONS(1383), - [aux_sym_while_statement_token1] = ACTIONS(1383), - [aux_sym_while_statement_token2] = ACTIONS(1383), - [aux_sym_do_statement_token1] = ACTIONS(1383), - [aux_sym_for_statement_token1] = ACTIONS(1383), - [aux_sym_for_statement_token2] = ACTIONS(1383), - [aux_sym_foreach_statement_token1] = ACTIONS(1383), - [aux_sym_foreach_statement_token2] = ACTIONS(1383), - [aux_sym_if_statement_token1] = ACTIONS(1383), - [aux_sym_if_statement_token2] = ACTIONS(1383), - [aux_sym_else_if_clause_token1] = ACTIONS(1383), - [aux_sym_else_clause_token1] = ACTIONS(1383), - [aux_sym_match_expression_token1] = ACTIONS(1383), - [aux_sym_match_default_expression_token1] = ACTIONS(1383), - [aux_sym_switch_statement_token1] = ACTIONS(1383), - [aux_sym_switch_block_token1] = ACTIONS(1383), - [anon_sym_AT] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1381), - [aux_sym_clone_expression_token1] = ACTIONS(1383), - [aux_sym_print_intrinsic_token1] = ACTIONS(1383), - [aux_sym_object_creation_expression_token1] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [sym_shell_command_expression] = ACTIONS(1381), - [aux_sym__list_destructing_token1] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_self] = ACTIONS(1383), - [anon_sym_parent] = ACTIONS(1383), - [anon_sym_POUND_LBRACK] = ACTIONS(1381), - [aux_sym_encapsed_string_token1] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [aux_sym_string_token1] = ACTIONS(1381), - [sym_boolean] = ACTIONS(1383), - [sym_null] = ACTIONS(1383), - [anon_sym_DOLLAR] = ACTIONS(1381), - [aux_sym_yield_expression_token1] = ACTIONS(1383), - [aux_sym_include_expression_token1] = ACTIONS(1383), - [aux_sym_include_once_expression_token1] = ACTIONS(1383), - [aux_sym_require_expression_token1] = ACTIONS(1383), - [aux_sym_require_once_expression_token1] = ACTIONS(1383), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1381), - }, - [569] = { - [sym_text_interpolation] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(1385), - [sym_name] = ACTIONS(1387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1385), - [aux_sym_function_static_declaration_token1] = ACTIONS(1387), - [aux_sym_global_declaration_token1] = ACTIONS(1387), - [aux_sym_namespace_definition_token1] = ACTIONS(1387), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1387), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1387), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1387), - [anon_sym_BSLASH] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [aux_sym_trait_declaration_token1] = ACTIONS(1387), - [aux_sym_interface_declaration_token1] = ACTIONS(1387), - [aux_sym_enum_declaration_token1] = ACTIONS(1387), - [aux_sym_enum_case_token1] = ACTIONS(1387), - [aux_sym_class_declaration_token1] = ACTIONS(1387), - [aux_sym_final_modifier_token1] = ACTIONS(1387), - [aux_sym_abstract_modifier_token1] = ACTIONS(1387), - [aux_sym_visibility_modifier_token1] = ACTIONS(1387), - [aux_sym_visibility_modifier_token2] = ACTIONS(1387), - [aux_sym_visibility_modifier_token3] = ACTIONS(1387), - [aux_sym_arrow_function_token1] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1385), - [aux_sym_cast_type_token1] = ACTIONS(1387), - [aux_sym_echo_statement_token1] = ACTIONS(1387), - [anon_sym_unset] = ACTIONS(1387), - [aux_sym_declare_statement_token1] = ACTIONS(1387), - [aux_sym_declare_statement_token2] = ACTIONS(1387), - [sym_float] = ACTIONS(1387), - [aux_sym_try_statement_token1] = ACTIONS(1387), - [aux_sym_goto_statement_token1] = ACTIONS(1387), - [aux_sym_continue_statement_token1] = ACTIONS(1387), - [aux_sym_break_statement_token1] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [aux_sym_return_statement_token1] = ACTIONS(1387), - [aux_sym_throw_expression_token1] = ACTIONS(1387), - [aux_sym_while_statement_token1] = ACTIONS(1387), - [aux_sym_while_statement_token2] = ACTIONS(1387), - [aux_sym_do_statement_token1] = ACTIONS(1387), - [aux_sym_for_statement_token1] = ACTIONS(1387), - [aux_sym_for_statement_token2] = ACTIONS(1387), - [aux_sym_foreach_statement_token1] = ACTIONS(1387), - [aux_sym_foreach_statement_token2] = ACTIONS(1387), - [aux_sym_if_statement_token1] = ACTIONS(1387), - [aux_sym_if_statement_token2] = ACTIONS(1387), - [aux_sym_else_if_clause_token1] = ACTIONS(1387), - [aux_sym_else_clause_token1] = ACTIONS(1387), - [aux_sym_match_expression_token1] = ACTIONS(1387), - [aux_sym_match_default_expression_token1] = ACTIONS(1387), - [aux_sym_switch_statement_token1] = ACTIONS(1387), - [aux_sym_switch_block_token1] = ACTIONS(1387), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [aux_sym_clone_expression_token1] = ACTIONS(1387), - [aux_sym_print_intrinsic_token1] = ACTIONS(1387), - [aux_sym_object_creation_expression_token1] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_shell_command_expression] = ACTIONS(1385), - [aux_sym__list_destructing_token1] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_self] = ACTIONS(1387), - [anon_sym_parent] = ACTIONS(1387), - [anon_sym_POUND_LBRACK] = ACTIONS(1385), - [aux_sym_encapsed_string_token1] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [aux_sym_string_token1] = ACTIONS(1385), - [sym_boolean] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [anon_sym_DOLLAR] = ACTIONS(1385), - [aux_sym_yield_expression_token1] = ACTIONS(1387), - [aux_sym_include_expression_token1] = ACTIONS(1387), - [aux_sym_include_once_expression_token1] = ACTIONS(1387), - [aux_sym_require_expression_token1] = ACTIONS(1387), - [aux_sym_require_once_expression_token1] = ACTIONS(1387), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1385), - }, - [570] = { - [sym_text_interpolation] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(1385), - [sym_name] = ACTIONS(1387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1385), - [aux_sym_function_static_declaration_token1] = ACTIONS(1387), - [aux_sym_global_declaration_token1] = ACTIONS(1387), - [aux_sym_namespace_definition_token1] = ACTIONS(1387), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1387), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1387), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1387), - [anon_sym_BSLASH] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [aux_sym_trait_declaration_token1] = ACTIONS(1387), - [aux_sym_interface_declaration_token1] = ACTIONS(1387), - [aux_sym_enum_declaration_token1] = ACTIONS(1387), - [aux_sym_enum_case_token1] = ACTIONS(1387), - [aux_sym_class_declaration_token1] = ACTIONS(1387), - [aux_sym_final_modifier_token1] = ACTIONS(1387), - [aux_sym_abstract_modifier_token1] = ACTIONS(1387), - [aux_sym_visibility_modifier_token1] = ACTIONS(1387), - [aux_sym_visibility_modifier_token2] = ACTIONS(1387), - [aux_sym_visibility_modifier_token3] = ACTIONS(1387), - [aux_sym_arrow_function_token1] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1385), - [aux_sym_cast_type_token1] = ACTIONS(1387), - [aux_sym_echo_statement_token1] = ACTIONS(1387), - [anon_sym_unset] = ACTIONS(1387), - [aux_sym_declare_statement_token1] = ACTIONS(1387), - [aux_sym_declare_statement_token2] = ACTIONS(1387), - [sym_float] = ACTIONS(1387), - [aux_sym_try_statement_token1] = ACTIONS(1387), - [aux_sym_goto_statement_token1] = ACTIONS(1387), - [aux_sym_continue_statement_token1] = ACTIONS(1387), - [aux_sym_break_statement_token1] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [aux_sym_return_statement_token1] = ACTIONS(1387), - [aux_sym_throw_expression_token1] = ACTIONS(1387), - [aux_sym_while_statement_token1] = ACTIONS(1387), - [aux_sym_while_statement_token2] = ACTIONS(1387), - [aux_sym_do_statement_token1] = ACTIONS(1387), - [aux_sym_for_statement_token1] = ACTIONS(1387), - [aux_sym_for_statement_token2] = ACTIONS(1387), - [aux_sym_foreach_statement_token1] = ACTIONS(1387), - [aux_sym_foreach_statement_token2] = ACTIONS(1387), - [aux_sym_if_statement_token1] = ACTIONS(1387), - [aux_sym_if_statement_token2] = ACTIONS(1387), - [aux_sym_else_if_clause_token1] = ACTIONS(1387), - [aux_sym_else_clause_token1] = ACTIONS(1387), - [aux_sym_match_expression_token1] = ACTIONS(1387), - [aux_sym_match_default_expression_token1] = ACTIONS(1387), - [aux_sym_switch_statement_token1] = ACTIONS(1387), - [aux_sym_switch_block_token1] = ACTIONS(1387), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [aux_sym_clone_expression_token1] = ACTIONS(1387), - [aux_sym_print_intrinsic_token1] = ACTIONS(1387), - [aux_sym_object_creation_expression_token1] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_shell_command_expression] = ACTIONS(1385), - [aux_sym__list_destructing_token1] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_self] = ACTIONS(1387), - [anon_sym_parent] = ACTIONS(1387), - [anon_sym_POUND_LBRACK] = ACTIONS(1385), - [aux_sym_encapsed_string_token1] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [aux_sym_string_token1] = ACTIONS(1385), - [sym_boolean] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [anon_sym_DOLLAR] = ACTIONS(1385), - [aux_sym_yield_expression_token1] = ACTIONS(1387), - [aux_sym_include_expression_token1] = ACTIONS(1387), - [aux_sym_include_once_expression_token1] = ACTIONS(1387), - [aux_sym_require_expression_token1] = ACTIONS(1387), - [aux_sym_require_once_expression_token1] = ACTIONS(1387), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1385), - }, - [571] = { - [sym_text_interpolation] = STATE(571), - [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_enum_declaration_token1] = ACTIONS(991), - [aux_sym_enum_case_token1] = ACTIONS(991), - [aux_sym_class_declaration_token1] = ACTIONS(991), - [aux_sym_final_modifier_token1] = ACTIONS(991), - [aux_sym_abstract_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token2] = ACTIONS(991), - [aux_sym_visibility_modifier_token3] = ACTIONS(991), - [aux_sym_arrow_function_token1] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [aux_sym_cast_type_token1] = ACTIONS(991), - [aux_sym_echo_statement_token1] = ACTIONS(991), - [anon_sym_unset] = ACTIONS(991), - [aux_sym_declare_statement_token1] = ACTIONS(991), - [aux_sym_declare_statement_token2] = ACTIONS(991), - [sym_float] = ACTIONS(991), - [aux_sym_try_statement_token1] = ACTIONS(991), - [aux_sym_goto_statement_token1] = ACTIONS(991), - [aux_sym_continue_statement_token1] = ACTIONS(991), - [aux_sym_break_statement_token1] = ACTIONS(991), - [sym_integer] = ACTIONS(991), - [aux_sym_return_statement_token1] = ACTIONS(991), - [aux_sym_throw_expression_token1] = ACTIONS(991), - [aux_sym_while_statement_token1] = ACTIONS(991), - [aux_sym_while_statement_token2] = ACTIONS(991), - [aux_sym_do_statement_token1] = ACTIONS(991), - [aux_sym_for_statement_token1] = ACTIONS(991), - [aux_sym_for_statement_token2] = ACTIONS(991), - [aux_sym_foreach_statement_token1] = ACTIONS(991), - [aux_sym_foreach_statement_token2] = ACTIONS(991), - [aux_sym_if_statement_token1] = ACTIONS(991), - [aux_sym_if_statement_token2] = ACTIONS(991), - [aux_sym_else_if_clause_token1] = ACTIONS(991), - [aux_sym_else_clause_token1] = ACTIONS(991), - [aux_sym_match_expression_token1] = ACTIONS(991), - [aux_sym_match_default_expression_token1] = ACTIONS(991), - [aux_sym_switch_statement_token1] = ACTIONS(991), - [aux_sym_switch_block_token1] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [aux_sym_clone_expression_token1] = ACTIONS(991), - [aux_sym_print_intrinsic_token1] = ACTIONS(991), - [aux_sym_object_creation_expression_token1] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_DASH_DASH] = ACTIONS(989), - [sym_shell_command_expression] = ACTIONS(989), - [aux_sym__list_destructing_token1] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_self] = ACTIONS(991), - [anon_sym_parent] = ACTIONS(991), - [anon_sym_POUND_LBRACK] = ACTIONS(989), - [aux_sym_encapsed_string_token1] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_SQUOTE] = ACTIONS(989), - [aux_sym_string_token1] = ACTIONS(989), - [sym_boolean] = ACTIONS(991), - [sym_null] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(989), - [aux_sym_yield_expression_token1] = ACTIONS(991), - [aux_sym_include_expression_token1] = ACTIONS(991), - [aux_sym_include_once_expression_token1] = ACTIONS(991), - [aux_sym_require_expression_token1] = ACTIONS(991), - [aux_sym_require_once_expression_token1] = ACTIONS(991), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(989), - }, - [572] = { - [sym_text_interpolation] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(1389), - [sym_name] = ACTIONS(1391), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1389), - [aux_sym_function_static_declaration_token1] = ACTIONS(1391), - [aux_sym_global_declaration_token1] = ACTIONS(1391), - [aux_sym_namespace_definition_token1] = ACTIONS(1391), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1391), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1391), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1391), - [anon_sym_BSLASH] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [aux_sym_trait_declaration_token1] = ACTIONS(1391), - [aux_sym_interface_declaration_token1] = ACTIONS(1391), - [aux_sym_enum_declaration_token1] = ACTIONS(1391), - [aux_sym_enum_case_token1] = ACTIONS(1391), - [aux_sym_class_declaration_token1] = ACTIONS(1391), - [aux_sym_final_modifier_token1] = ACTIONS(1391), - [aux_sym_abstract_modifier_token1] = ACTIONS(1391), - [aux_sym_visibility_modifier_token1] = ACTIONS(1391), - [aux_sym_visibility_modifier_token2] = ACTIONS(1391), - [aux_sym_visibility_modifier_token3] = ACTIONS(1391), - [aux_sym_arrow_function_token1] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1389), - [aux_sym_cast_type_token1] = ACTIONS(1391), - [aux_sym_echo_statement_token1] = ACTIONS(1391), - [anon_sym_unset] = ACTIONS(1391), - [aux_sym_declare_statement_token1] = ACTIONS(1391), - [aux_sym_declare_statement_token2] = ACTIONS(1391), - [sym_float] = ACTIONS(1391), - [aux_sym_try_statement_token1] = ACTIONS(1391), - [aux_sym_goto_statement_token1] = ACTIONS(1391), - [aux_sym_continue_statement_token1] = ACTIONS(1391), - [aux_sym_break_statement_token1] = ACTIONS(1391), - [sym_integer] = ACTIONS(1391), - [aux_sym_return_statement_token1] = ACTIONS(1391), - [aux_sym_throw_expression_token1] = ACTIONS(1391), - [aux_sym_while_statement_token1] = ACTIONS(1391), - [aux_sym_while_statement_token2] = ACTIONS(1391), - [aux_sym_do_statement_token1] = ACTIONS(1391), - [aux_sym_for_statement_token1] = ACTIONS(1391), - [aux_sym_for_statement_token2] = ACTIONS(1391), - [aux_sym_foreach_statement_token1] = ACTIONS(1391), - [aux_sym_foreach_statement_token2] = ACTIONS(1391), - [aux_sym_if_statement_token1] = ACTIONS(1391), - [aux_sym_if_statement_token2] = ACTIONS(1391), - [aux_sym_else_if_clause_token1] = ACTIONS(1391), - [aux_sym_else_clause_token1] = ACTIONS(1391), - [aux_sym_match_expression_token1] = ACTIONS(1391), - [aux_sym_match_default_expression_token1] = ACTIONS(1391), - [aux_sym_switch_statement_token1] = ACTIONS(1391), - [aux_sym_switch_block_token1] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [aux_sym_clone_expression_token1] = ACTIONS(1391), - [aux_sym_print_intrinsic_token1] = ACTIONS(1391), - [aux_sym_object_creation_expression_token1] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [sym_shell_command_expression] = ACTIONS(1389), - [aux_sym__list_destructing_token1] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_self] = ACTIONS(1391), - [anon_sym_parent] = ACTIONS(1391), - [anon_sym_POUND_LBRACK] = ACTIONS(1389), - [aux_sym_encapsed_string_token1] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [aux_sym_string_token1] = ACTIONS(1389), - [sym_boolean] = ACTIONS(1391), - [sym_null] = ACTIONS(1391), - [anon_sym_DOLLAR] = ACTIONS(1389), - [aux_sym_yield_expression_token1] = ACTIONS(1391), - [aux_sym_include_expression_token1] = ACTIONS(1391), - [aux_sym_include_once_expression_token1] = ACTIONS(1391), - [aux_sym_require_expression_token1] = ACTIONS(1391), - [aux_sym_require_once_expression_token1] = ACTIONS(1391), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1389), - }, - [573] = { - [sym_text_interpolation] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(1389), - [sym_name] = ACTIONS(1391), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1389), - [aux_sym_function_static_declaration_token1] = ACTIONS(1391), - [aux_sym_global_declaration_token1] = ACTIONS(1391), - [aux_sym_namespace_definition_token1] = ACTIONS(1391), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1391), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1391), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1391), - [anon_sym_BSLASH] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [aux_sym_trait_declaration_token1] = ACTIONS(1391), - [aux_sym_interface_declaration_token1] = ACTIONS(1391), - [aux_sym_enum_declaration_token1] = ACTIONS(1391), - [aux_sym_enum_case_token1] = ACTIONS(1391), - [aux_sym_class_declaration_token1] = ACTIONS(1391), - [aux_sym_final_modifier_token1] = ACTIONS(1391), - [aux_sym_abstract_modifier_token1] = ACTIONS(1391), - [aux_sym_visibility_modifier_token1] = ACTIONS(1391), - [aux_sym_visibility_modifier_token2] = ACTIONS(1391), - [aux_sym_visibility_modifier_token3] = ACTIONS(1391), - [aux_sym_arrow_function_token1] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1389), - [aux_sym_cast_type_token1] = ACTIONS(1391), - [aux_sym_echo_statement_token1] = ACTIONS(1391), - [anon_sym_unset] = ACTIONS(1391), - [aux_sym_declare_statement_token1] = ACTIONS(1391), - [aux_sym_declare_statement_token2] = ACTIONS(1391), - [sym_float] = ACTIONS(1391), - [aux_sym_try_statement_token1] = ACTIONS(1391), - [aux_sym_goto_statement_token1] = ACTIONS(1391), - [aux_sym_continue_statement_token1] = ACTIONS(1391), - [aux_sym_break_statement_token1] = ACTIONS(1391), - [sym_integer] = ACTIONS(1391), - [aux_sym_return_statement_token1] = ACTIONS(1391), - [aux_sym_throw_expression_token1] = ACTIONS(1391), - [aux_sym_while_statement_token1] = ACTIONS(1391), - [aux_sym_while_statement_token2] = ACTIONS(1391), - [aux_sym_do_statement_token1] = ACTIONS(1391), - [aux_sym_for_statement_token1] = ACTIONS(1391), - [aux_sym_for_statement_token2] = ACTIONS(1391), - [aux_sym_foreach_statement_token1] = ACTIONS(1391), - [aux_sym_foreach_statement_token2] = ACTIONS(1391), - [aux_sym_if_statement_token1] = ACTIONS(1391), - [aux_sym_if_statement_token2] = ACTIONS(1391), - [aux_sym_else_if_clause_token1] = ACTIONS(1391), - [aux_sym_else_clause_token1] = ACTIONS(1391), - [aux_sym_match_expression_token1] = ACTIONS(1391), - [aux_sym_match_default_expression_token1] = ACTIONS(1391), - [aux_sym_switch_statement_token1] = ACTIONS(1391), - [aux_sym_switch_block_token1] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [aux_sym_clone_expression_token1] = ACTIONS(1391), - [aux_sym_print_intrinsic_token1] = ACTIONS(1391), - [aux_sym_object_creation_expression_token1] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [sym_shell_command_expression] = ACTIONS(1389), - [aux_sym__list_destructing_token1] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_self] = ACTIONS(1391), - [anon_sym_parent] = ACTIONS(1391), - [anon_sym_POUND_LBRACK] = ACTIONS(1389), - [aux_sym_encapsed_string_token1] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [aux_sym_string_token1] = ACTIONS(1389), - [sym_boolean] = ACTIONS(1391), - [sym_null] = ACTIONS(1391), - [anon_sym_DOLLAR] = ACTIONS(1389), - [aux_sym_yield_expression_token1] = ACTIONS(1391), - [aux_sym_include_expression_token1] = ACTIONS(1391), - [aux_sym_include_once_expression_token1] = ACTIONS(1391), - [aux_sym_require_expression_token1] = ACTIONS(1391), - [aux_sym_require_once_expression_token1] = ACTIONS(1391), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1389), - }, - [574] = { - [sym_text_interpolation] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(1393), - [sym_name] = ACTIONS(1395), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1393), - [aux_sym_function_static_declaration_token1] = ACTIONS(1395), - [aux_sym_global_declaration_token1] = ACTIONS(1395), - [aux_sym_namespace_definition_token1] = ACTIONS(1395), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1395), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1395), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1395), - [anon_sym_BSLASH] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [aux_sym_trait_declaration_token1] = ACTIONS(1395), - [aux_sym_interface_declaration_token1] = ACTIONS(1395), - [aux_sym_enum_declaration_token1] = ACTIONS(1395), - [aux_sym_enum_case_token1] = ACTIONS(1395), - [aux_sym_class_declaration_token1] = ACTIONS(1395), - [aux_sym_final_modifier_token1] = ACTIONS(1395), - [aux_sym_abstract_modifier_token1] = ACTIONS(1395), - [aux_sym_visibility_modifier_token1] = ACTIONS(1395), - [aux_sym_visibility_modifier_token2] = ACTIONS(1395), - [aux_sym_visibility_modifier_token3] = ACTIONS(1395), - [aux_sym_arrow_function_token1] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1393), - [aux_sym_cast_type_token1] = ACTIONS(1395), - [aux_sym_echo_statement_token1] = ACTIONS(1395), - [anon_sym_unset] = ACTIONS(1395), - [aux_sym_declare_statement_token1] = ACTIONS(1395), - [aux_sym_declare_statement_token2] = ACTIONS(1395), - [sym_float] = ACTIONS(1395), - [aux_sym_try_statement_token1] = ACTIONS(1395), - [aux_sym_goto_statement_token1] = ACTIONS(1395), - [aux_sym_continue_statement_token1] = ACTIONS(1395), - [aux_sym_break_statement_token1] = ACTIONS(1395), - [sym_integer] = ACTIONS(1395), - [aux_sym_return_statement_token1] = ACTIONS(1395), - [aux_sym_throw_expression_token1] = ACTIONS(1395), - [aux_sym_while_statement_token1] = ACTIONS(1395), - [aux_sym_while_statement_token2] = ACTIONS(1395), - [aux_sym_do_statement_token1] = ACTIONS(1395), - [aux_sym_for_statement_token1] = ACTIONS(1395), - [aux_sym_for_statement_token2] = ACTIONS(1395), - [aux_sym_foreach_statement_token1] = ACTIONS(1395), - [aux_sym_foreach_statement_token2] = ACTIONS(1395), - [aux_sym_if_statement_token1] = ACTIONS(1395), - [aux_sym_if_statement_token2] = ACTIONS(1395), - [aux_sym_else_if_clause_token1] = ACTIONS(1395), - [aux_sym_else_clause_token1] = ACTIONS(1395), - [aux_sym_match_expression_token1] = ACTIONS(1395), - [aux_sym_match_default_expression_token1] = ACTIONS(1395), - [aux_sym_switch_statement_token1] = ACTIONS(1395), - [aux_sym_switch_block_token1] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1393), - [aux_sym_clone_expression_token1] = ACTIONS(1395), - [aux_sym_print_intrinsic_token1] = ACTIONS(1395), - [aux_sym_object_creation_expression_token1] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [sym_shell_command_expression] = ACTIONS(1393), - [aux_sym__list_destructing_token1] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_self] = ACTIONS(1395), - [anon_sym_parent] = ACTIONS(1395), - [anon_sym_POUND_LBRACK] = ACTIONS(1393), - [aux_sym_encapsed_string_token1] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [aux_sym_string_token1] = ACTIONS(1393), - [sym_boolean] = ACTIONS(1395), - [sym_null] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1393), - [aux_sym_yield_expression_token1] = ACTIONS(1395), - [aux_sym_include_expression_token1] = ACTIONS(1395), - [aux_sym_include_once_expression_token1] = ACTIONS(1395), - [aux_sym_require_expression_token1] = ACTIONS(1395), - [aux_sym_require_once_expression_token1] = ACTIONS(1395), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1393), - }, - [575] = { - [sym_text_interpolation] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(1397), - [sym_name] = ACTIONS(1399), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1397), - [aux_sym_function_static_declaration_token1] = ACTIONS(1399), - [aux_sym_global_declaration_token1] = ACTIONS(1399), - [aux_sym_namespace_definition_token1] = ACTIONS(1399), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1399), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1399), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1399), - [anon_sym_BSLASH] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [aux_sym_trait_declaration_token1] = ACTIONS(1399), - [aux_sym_interface_declaration_token1] = ACTIONS(1399), - [aux_sym_enum_declaration_token1] = ACTIONS(1399), - [aux_sym_enum_case_token1] = ACTIONS(1399), - [aux_sym_class_declaration_token1] = ACTIONS(1399), - [aux_sym_final_modifier_token1] = ACTIONS(1399), - [aux_sym_abstract_modifier_token1] = ACTIONS(1399), - [aux_sym_visibility_modifier_token1] = ACTIONS(1399), - [aux_sym_visibility_modifier_token2] = ACTIONS(1399), - [aux_sym_visibility_modifier_token3] = ACTIONS(1399), - [aux_sym_arrow_function_token1] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_cast_type_token1] = ACTIONS(1399), - [aux_sym_echo_statement_token1] = ACTIONS(1399), - [anon_sym_unset] = ACTIONS(1399), - [aux_sym_declare_statement_token1] = ACTIONS(1399), - [aux_sym_declare_statement_token2] = ACTIONS(1399), - [sym_float] = ACTIONS(1399), - [aux_sym_try_statement_token1] = ACTIONS(1399), - [aux_sym_goto_statement_token1] = ACTIONS(1399), - [aux_sym_continue_statement_token1] = ACTIONS(1399), - [aux_sym_break_statement_token1] = ACTIONS(1399), - [sym_integer] = ACTIONS(1399), - [aux_sym_return_statement_token1] = ACTIONS(1399), - [aux_sym_throw_expression_token1] = ACTIONS(1399), - [aux_sym_while_statement_token1] = ACTIONS(1399), - [aux_sym_while_statement_token2] = ACTIONS(1399), - [aux_sym_do_statement_token1] = ACTIONS(1399), - [aux_sym_for_statement_token1] = ACTIONS(1399), - [aux_sym_for_statement_token2] = ACTIONS(1399), - [aux_sym_foreach_statement_token1] = ACTIONS(1399), - [aux_sym_foreach_statement_token2] = ACTIONS(1399), - [aux_sym_if_statement_token1] = ACTIONS(1399), - [aux_sym_if_statement_token2] = ACTIONS(1399), - [aux_sym_else_if_clause_token1] = ACTIONS(1399), - [aux_sym_else_clause_token1] = ACTIONS(1399), - [aux_sym_match_expression_token1] = ACTIONS(1399), - [aux_sym_match_default_expression_token1] = ACTIONS(1399), - [aux_sym_switch_statement_token1] = ACTIONS(1399), - [aux_sym_switch_block_token1] = ACTIONS(1399), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1397), - [aux_sym_clone_expression_token1] = ACTIONS(1399), - [aux_sym_print_intrinsic_token1] = ACTIONS(1399), - [aux_sym_object_creation_expression_token1] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [sym_shell_command_expression] = ACTIONS(1397), - [aux_sym__list_destructing_token1] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_self] = ACTIONS(1399), - [anon_sym_parent] = ACTIONS(1399), - [anon_sym_POUND_LBRACK] = ACTIONS(1397), - [aux_sym_encapsed_string_token1] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1397), - [sym_boolean] = ACTIONS(1399), - [sym_null] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1397), - [aux_sym_yield_expression_token1] = ACTIONS(1399), - [aux_sym_include_expression_token1] = ACTIONS(1399), - [aux_sym_include_once_expression_token1] = ACTIONS(1399), - [aux_sym_require_expression_token1] = ACTIONS(1399), - [aux_sym_require_once_expression_token1] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1397), - }, - [576] = { - [sym_text_interpolation] = STATE(576), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1167), - [sym_unary_op_expression] = STATE(1167), - [sym_exponentiation_expression] = STATE(881), - [sym_clone_expression] = STATE(1167), - [sym__primary_expression] = STATE(1167), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(881), - [sym_cast_variable] = STATE(662), - [sym_assignment_expression] = STATE(881), - [sym_augmented_assignment_expression] = STATE(881), - [sym_member_access_expression] = STATE(662), - [sym_nullsafe_member_access_expression] = STATE(662), - [sym_scoped_property_access_expression] = STATE(662), - [sym_list_literal] = STATE(2368), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(645), - [sym_scoped_call_expression] = STATE(645), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(645), - [sym_nullsafe_member_call_expression] = STATE(645), - [sym_subscript_expression] = STATE(645), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(645), - [sym_variable_name] = STATE(645), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [577] = { - [sym_text_interpolation] = STATE(577), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(1013), - [sym_unary_op_expression] = STATE(1013), - [sym_exponentiation_expression] = STATE(881), - [sym_clone_expression] = STATE(1013), - [sym__primary_expression] = STATE(1013), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(881), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(881), - [sym_augmented_assignment_expression] = STATE(881), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2338), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(617), - [sym_scoped_call_expression] = STATE(617), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(617), - [sym_nullsafe_member_call_expression] = STATE(617), - [sym_subscript_expression] = STATE(617), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(617), - [sym_variable_name] = STATE(617), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [578] = { - [sym_text_interpolation] = STATE(578), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1122), - [sym_unary_op_expression] = STATE(1122), - [sym_exponentiation_expression] = STATE(1121), - [sym_clone_expression] = STATE(1122), - [sym__primary_expression] = STATE(1122), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1121), - [sym_cast_variable] = STATE(654), - [sym_assignment_expression] = STATE(1121), - [sym_augmented_assignment_expression] = STATE(1121), - [sym_member_access_expression] = STATE(654), - [sym_nullsafe_member_access_expression] = STATE(654), - [sym_scoped_property_access_expression] = STATE(654), - [sym_list_literal] = STATE(2379), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(624), - [sym_scoped_call_expression] = STATE(624), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(624), - [sym_nullsafe_member_call_expression] = STATE(624), - [sym_subscript_expression] = STATE(624), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(624), - [sym_variable_name] = STATE(624), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [579] = { - [sym_text_interpolation] = STATE(579), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(916), - [sym_unary_op_expression] = STATE(916), - [sym_exponentiation_expression] = STATE(881), - [sym_clone_expression] = STATE(916), - [sym__primary_expression] = STATE(916), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(881), - [sym_cast_variable] = STATE(618), - [sym_assignment_expression] = STATE(881), - [sym_augmented_assignment_expression] = STATE(881), - [sym_member_access_expression] = STATE(618), - [sym_nullsafe_member_access_expression] = STATE(618), - [sym_scoped_property_access_expression] = STATE(618), - [sym_list_literal] = STATE(2427), - [sym__list_destructing] = STATE(2207), - [sym__array_destructing] = STATE(2207), - [sym_function_call_expression] = STATE(614), - [sym_scoped_call_expression] = STATE(614), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(614), - [sym_nullsafe_member_call_expression] = STATE(614), - [sym_subscript_expression] = STATE(614), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(614), - [sym_variable_name] = STATE(614), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [aux_sym__list_destructing_token1] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [580] = { - [sym_text_interpolation] = STATE(580), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(2374), - [sym__unary_expression] = STATE(895), - [sym_unary_op_expression] = STATE(970), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(970), - [sym__primary_expression] = STATE(970), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(615), - [sym_member_access_expression] = STATE(615), - [sym_nullsafe_member_access_expression] = STATE(615), - [sym_scoped_property_access_expression] = STATE(615), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_include_expression] = STATE(895), - [sym_include_once_expression] = STATE(895), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(610), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [aux_sym_clone_expression_token1] = ACTIONS(622), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_include_expression_token1] = ACTIONS(632), - [aux_sym_include_once_expression_token1] = ACTIONS(634), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [581] = { - [sym_text_interpolation] = STATE(581), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(2434), - [sym__unary_expression] = STATE(895), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(615), - [sym_member_access_expression] = STATE(615), - [sym_nullsafe_member_access_expression] = STATE(615), - [sym_scoped_property_access_expression] = STATE(615), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_include_expression] = STATE(895), - [sym_include_once_expression] = STATE(895), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(558), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [582] = { - [sym_text_interpolation] = STATE(582), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(2327), - [sym__unary_expression] = STATE(895), - [sym_unary_op_expression] = STATE(1159), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(1159), - [sym__primary_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(615), - [sym_member_access_expression] = STATE(615), - [sym_nullsafe_member_access_expression] = STATE(615), - [sym_scoped_property_access_expression] = STATE(615), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_include_expression] = STATE(895), - [sym_include_once_expression] = STATE(895), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(654), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(664), - [aux_sym_clone_expression_token1] = ACTIONS(666), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_include_expression_token1] = ACTIONS(676), - [aux_sym_include_once_expression_token1] = ACTIONS(678), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [583] = { - [sym_text_interpolation] = STATE(583), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym_match_expression] = STATE(2434), - [sym__unary_expression] = STATE(895), - [sym_unary_op_expression] = STATE(921), - [sym_exponentiation_expression] = STATE(856), - [sym_clone_expression] = STATE(921), - [sym__primary_expression] = STATE(921), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_expression] = STATE(856), - [sym_cast_variable] = STATE(656), - [sym_member_access_expression] = STATE(656), - [sym_nullsafe_member_access_expression] = STATE(656), - [sym_scoped_property_access_expression] = STATE(656), - [sym_function_call_expression] = STATE(619), - [sym_scoped_call_expression] = STATE(619), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(619), - [sym_nullsafe_member_call_expression] = STATE(619), - [sym_subscript_expression] = STATE(619), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(619), - [sym_variable_name] = STATE(619), - [sym_include_expression] = STATE(895), - [sym_include_once_expression] = STATE(895), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(794), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [aux_sym_clone_expression_token1] = ACTIONS(576), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [aux_sym_include_expression_token1] = ACTIONS(598), - [aux_sym_include_once_expression_token1] = ACTIONS(600), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [584] = { - [sym_text_interpolation] = STATE(584), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(2473), - [sym__unary_expression] = STATE(1073), - [sym_unary_op_expression] = STATE(1062), - [sym_exponentiation_expression] = STATE(1055), - [sym_clone_expression] = STATE(1062), - [sym__primary_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1055), - [sym_cast_variable] = STATE(655), - [sym_member_access_expression] = STATE(655), - [sym_nullsafe_member_access_expression] = STATE(655), - [sym_scoped_property_access_expression] = STATE(655), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_include_expression] = STATE(1073), - [sym_include_once_expression] = STATE(1073), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_match_expression_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(275), - [aux_sym_clone_expression_token1] = ACTIONS(277), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [aux_sym_include_expression_token1] = ACTIONS(303), - [aux_sym_include_once_expression_token1] = ACTIONS(305), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [585] = { - [sym_text_interpolation] = STATE(585), - [sym_name] = ACTIONS(1405), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1407), - [aux_sym_function_static_declaration_token1] = ACTIONS(1405), - [aux_sym_global_declaration_token1] = ACTIONS(1405), - [aux_sym_namespace_definition_token1] = ACTIONS(1405), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1405), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1405), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1405), - [anon_sym_BSLASH] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [aux_sym_trait_declaration_token1] = ACTIONS(1405), - [aux_sym_interface_declaration_token1] = ACTIONS(1405), - [aux_sym_enum_declaration_token1] = ACTIONS(1405), - [anon_sym_COLON] = ACTIONS(1407), - [aux_sym_class_declaration_token1] = ACTIONS(1405), - [aux_sym_final_modifier_token1] = ACTIONS(1405), - [aux_sym_abstract_modifier_token1] = ACTIONS(1405), - [aux_sym_visibility_modifier_token1] = ACTIONS(1405), - [aux_sym_visibility_modifier_token2] = ACTIONS(1405), - [aux_sym_visibility_modifier_token3] = ACTIONS(1405), - [aux_sym_arrow_function_token1] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1407), - [aux_sym_cast_type_token1] = ACTIONS(1405), - [aux_sym_echo_statement_token1] = ACTIONS(1405), - [anon_sym_unset] = ACTIONS(1405), - [aux_sym_declare_statement_token1] = ACTIONS(1405), - [sym_float] = ACTIONS(1405), - [aux_sym_try_statement_token1] = ACTIONS(1405), - [aux_sym_goto_statement_token1] = ACTIONS(1405), - [aux_sym_continue_statement_token1] = ACTIONS(1405), - [aux_sym_break_statement_token1] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [aux_sym_return_statement_token1] = ACTIONS(1405), - [aux_sym_throw_expression_token1] = ACTIONS(1405), - [aux_sym_while_statement_token1] = ACTIONS(1405), - [aux_sym_do_statement_token1] = ACTIONS(1405), - [aux_sym_for_statement_token1] = ACTIONS(1405), - [aux_sym_foreach_statement_token1] = ACTIONS(1405), - [aux_sym_if_statement_token1] = ACTIONS(1405), - [aux_sym_match_expression_token1] = ACTIONS(1405), - [aux_sym_switch_statement_token1] = ACTIONS(1405), - [anon_sym_AT] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [aux_sym_clone_expression_token1] = ACTIONS(1405), - [aux_sym_print_intrinsic_token1] = ACTIONS(1405), - [aux_sym_object_creation_expression_token1] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [sym_shell_command_expression] = ACTIONS(1407), - [aux_sym__list_destructing_token1] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_self] = ACTIONS(1405), - [anon_sym_parent] = ACTIONS(1405), - [anon_sym_POUND_LBRACK] = ACTIONS(1407), - [aux_sym_encapsed_string_token1] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [aux_sym_string_token1] = ACTIONS(1407), - [sym_boolean] = ACTIONS(1405), - [sym_null] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1407), - [aux_sym_yield_expression_token1] = ACTIONS(1405), - [aux_sym_include_expression_token1] = ACTIONS(1405), - [aux_sym_include_once_expression_token1] = ACTIONS(1405), - [aux_sym_require_expression_token1] = ACTIONS(1405), - [aux_sym_require_once_expression_token1] = ACTIONS(1405), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1407), - }, - [586] = { - [sym_text_interpolation] = STATE(586), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_COMMA] = ACTIONS(1409), - [anon_sym_EQ] = ACTIONS(1411), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_RBRACE] = ACTIONS(1409), - [aux_sym_base_clause_token1] = ACTIONS(1409), - [anon_sym_COLON] = ACTIONS(1411), - [aux_sym_class_interface_clause_token1] = ACTIONS(1409), - [anon_sym_EQ_GT] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_QMARK] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1411), - [anon_sym_COLON_COLON] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1409), - [anon_sym_STAR_EQ] = ACTIONS(1409), - [anon_sym_SLASH_EQ] = ACTIONS(1409), - [anon_sym_PERCENT_EQ] = ACTIONS(1409), - [anon_sym_PLUS_EQ] = ACTIONS(1409), - [anon_sym_DASH_EQ] = ACTIONS(1409), - [anon_sym_DOT_EQ] = ACTIONS(1409), - [anon_sym_LT_LT_EQ] = ACTIONS(1409), - [anon_sym_GT_GT_EQ] = ACTIONS(1409), - [anon_sym_AMP_EQ] = ACTIONS(1409), - [anon_sym_CARET_EQ] = ACTIONS(1409), - [anon_sym_PIPE_EQ] = ACTIONS(1409), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1409), - [anon_sym_DASH_GT] = ACTIONS(1409), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1409), - [anon_sym_RBRACK] = ACTIONS(1409), - [aux_sym_binary_expression_token1] = ACTIONS(1409), - [anon_sym_QMARK_QMARK] = ACTIONS(1411), - [aux_sym_binary_expression_token2] = ACTIONS(1409), - [aux_sym_binary_expression_token3] = ACTIONS(1409), - [aux_sym_binary_expression_token4] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1409), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_LT_GT] = ACTIONS(1409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1409), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_EQ] = ACTIONS(1409), - [anon_sym_LT_EQ_GT] = ACTIONS(1409), - [anon_sym_LT_LT] = ACTIONS(1411), - [anon_sym_GT_GT] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_PERCENT] = ACTIONS(1411), - [sym_comment] = ACTIONS(1413), - }, - [587] = { - [sym_text_interpolation] = STATE(587), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2412), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__primary_expression] = STATE(864), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_variable] = STATE(699), - [sym_member_access_expression] = STATE(699), - [sym_nullsafe_member_access_expression] = STATE(699), - [sym_scoped_property_access_expression] = STATE(699), - [sym_function_call_expression] = STATE(666), - [sym_scoped_call_expression] = STATE(666), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(666), - [sym_nullsafe_member_call_expression] = STATE(666), - [sym_subscript_expression] = STATE(666), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1710), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(666), - [sym_variable_name] = STATE(666), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(1415), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(566), - [aux_sym_print_intrinsic_token1] = ACTIONS(578), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [588] = { - [sym_text_interpolation] = STATE(588), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_COMMA] = ACTIONS(1417), - [anon_sym_EQ] = ACTIONS(1419), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [aux_sym_base_clause_token1] = ACTIONS(1417), - [anon_sym_COLON] = ACTIONS(1419), - [aux_sym_class_interface_clause_token1] = ACTIONS(1417), - [anon_sym_EQ_GT] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_STAR_STAR] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1417), - [anon_sym_STAR_EQ] = ACTIONS(1417), - [anon_sym_SLASH_EQ] = ACTIONS(1417), - [anon_sym_PERCENT_EQ] = ACTIONS(1417), - [anon_sym_PLUS_EQ] = ACTIONS(1417), - [anon_sym_DASH_EQ] = ACTIONS(1417), - [anon_sym_DOT_EQ] = ACTIONS(1417), - [anon_sym_LT_LT_EQ] = ACTIONS(1417), - [anon_sym_GT_GT_EQ] = ACTIONS(1417), - [anon_sym_AMP_EQ] = ACTIONS(1417), - [anon_sym_CARET_EQ] = ACTIONS(1417), - [anon_sym_PIPE_EQ] = ACTIONS(1417), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1417), - [anon_sym_DASH_GT] = ACTIONS(1417), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_RBRACK] = ACTIONS(1417), - [aux_sym_binary_expression_token1] = ACTIONS(1417), - [anon_sym_QMARK_QMARK] = ACTIONS(1419), - [aux_sym_binary_expression_token2] = ACTIONS(1417), - [aux_sym_binary_expression_token3] = ACTIONS(1417), - [aux_sym_binary_expression_token4] = ACTIONS(1417), - [anon_sym_PIPE_PIPE] = ACTIONS(1417), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1419), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_LT_GT] = ACTIONS(1417), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1417), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1419), - [anon_sym_GT_EQ] = ACTIONS(1417), - [anon_sym_LT_EQ_GT] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(1419), - [anon_sym_GT_GT] = ACTIONS(1419), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_SLASH] = ACTIONS(1419), - [anon_sym_PERCENT] = ACTIONS(1419), - [sym_comment] = ACTIONS(1413), - }, - [589] = { - [sym_text_interpolation] = STATE(589), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2462), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__primary_expression] = STATE(864), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_variable] = STATE(699), - [sym_member_access_expression] = STATE(699), - [sym_nullsafe_member_access_expression] = STATE(699), - [sym_scoped_property_access_expression] = STATE(699), - [sym_function_call_expression] = STATE(666), - [sym_scoped_call_expression] = STATE(666), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(666), - [sym_nullsafe_member_call_expression] = STATE(666), - [sym_subscript_expression] = STATE(666), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1679), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(666), - [sym_variable_name] = STATE(666), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(1415), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(614), - [aux_sym_print_intrinsic_token1] = ACTIONS(624), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [590] = { - [sym_text_interpolation] = STATE(590), - [sym_qualified_name] = STATE(779), - [sym_namespace_name_as_prefix] = STATE(2401), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2393), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym__primary_expression] = STATE(1109), - [sym_parenthesized_expression] = STATE(770), - [sym_class_constant_access_expression] = STATE(845), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_variable] = STATE(794), - [sym_member_access_expression] = STATE(794), - [sym_nullsafe_member_access_expression] = STATE(794), - [sym_scoped_property_access_expression] = STATE(794), - [sym_function_call_expression] = STATE(734), - [sym_scoped_call_expression] = STATE(734), - [sym__scope_resolution_qualifier] = STATE(2343), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(734), - [sym_nullsafe_member_call_expression] = STATE(734), - [sym_subscript_expression] = STATE(734), - [sym__dereferencable_expression] = STATE(1562), - [sym_array_creation_expression] = STATE(770), - [sym_attribute_list] = STATE(1729), - [sym_encapsed_string] = STATE(831), - [sym_string] = STATE(831), - [sym__string] = STATE(770), - [sym_dynamic_variable_name] = STATE(734), - [sym_variable_name] = STATE(734), - [sym__reserved_identifier] = STATE(1483), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(640), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(644), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(646), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(1421), - [aux_sym_cast_type_token1] = ACTIONS(235), - [sym_float] = ACTIONS(243), - [sym_integer] = ACTIONS(243), - [aux_sym_throw_expression_token1] = ACTIONS(255), - [aux_sym_print_intrinsic_token1] = ACTIONS(279), - [aux_sym_object_creation_expression_token1] = ACTIONS(281), - [anon_sym_PLUS_PLUS] = ACTIONS(283), - [anon_sym_DASH_DASH] = ACTIONS(283), - [sym_shell_command_expression] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(295), - [anon_sym_DQUOTE] = ACTIONS(295), - [anon_sym_SQUOTE] = ACTIONS(297), - [aux_sym_string_token1] = ACTIONS(297), - [sym_boolean] = ACTIONS(243), - [sym_null] = ACTIONS(243), - [anon_sym_DOLLAR] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(311), - }, - [591] = { - [sym_text_interpolation] = STATE(591), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2387), - [sym_namespace_name] = STATE(2400), - [sym_static_modifier] = STATE(2488), - [sym_arrow_function] = STATE(860), - [sym_throw_expression] = STATE(860), - [sym__primary_expression] = STATE(864), - [sym_parenthesized_expression] = STATE(675), - [sym_class_constant_access_expression] = STATE(751), - [sym_print_intrinsic] = STATE(860), - [sym_anonymous_function_creation_expression] = STATE(860), - [sym_object_creation_expression] = STATE(860), - [sym_update_expression] = STATE(860), - [sym_cast_variable] = STATE(699), - [sym_member_access_expression] = STATE(699), - [sym_nullsafe_member_access_expression] = STATE(699), - [sym_scoped_property_access_expression] = STATE(699), - [sym_function_call_expression] = STATE(666), - [sym_scoped_call_expression] = STATE(666), - [sym__scope_resolution_qualifier] = STATE(2383), - [sym_relative_scope] = STATE(2342), - [sym_member_call_expression] = STATE(666), - [sym_nullsafe_member_call_expression] = STATE(666), - [sym_subscript_expression] = STATE(666), - [sym__dereferencable_expression] = STATE(1593), - [sym_array_creation_expression] = STATE(675), - [sym_attribute_list] = STATE(1641), - [sym_encapsed_string] = STATE(716), - [sym_string] = STATE(716), - [sym__string] = STATE(675), - [sym_dynamic_variable_name] = STATE(666), - [sym_variable_name] = STATE(666), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat2] = STATE(1314), - [sym_name] = ACTIONS(542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(548), - [aux_sym_namespace_definition_token1] = ACTIONS(550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(552), - [anon_sym_BSLASH] = ACTIONS(209), - [aux_sym_arrow_function_token1] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(1415), - [aux_sym_cast_type_token1] = ACTIONS(562), - [sym_float] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [aux_sym_throw_expression_token1] = ACTIONS(658), - [aux_sym_print_intrinsic_token1] = ACTIONS(668), - [aux_sym_object_creation_expression_token1] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [sym_shell_command_expression] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(291), - [anon_sym_parent] = ACTIONS(291), - [anon_sym_POUND_LBRACK] = ACTIONS(293), - [aux_sym_encapsed_string_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(590), - [aux_sym_string_token1] = ACTIONS(590), - [sym_boolean] = ACTIONS(564), - [sym_null] = ACTIONS(564), - [anon_sym_DOLLAR] = ACTIONS(592), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(606), - }, - [592] = { - [sym_text_interpolation] = STATE(592), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_COMMA] = ACTIONS(1423), - [anon_sym_EQ] = ACTIONS(1425), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [aux_sym_base_clause_token1] = ACTIONS(1423), - [anon_sym_COLON] = ACTIONS(1425), - [aux_sym_class_interface_clause_token1] = ACTIONS(1423), - [anon_sym_EQ_GT] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_RPAREN] = ACTIONS(1423), - [anon_sym_QMARK] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_STAR_STAR] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1423), - [anon_sym_STAR_EQ] = ACTIONS(1423), - [anon_sym_SLASH_EQ] = ACTIONS(1423), - [anon_sym_PERCENT_EQ] = ACTIONS(1423), - [anon_sym_PLUS_EQ] = ACTIONS(1423), - [anon_sym_DASH_EQ] = ACTIONS(1423), - [anon_sym_DOT_EQ] = ACTIONS(1423), - [anon_sym_LT_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_GT_EQ] = ACTIONS(1423), - [anon_sym_AMP_EQ] = ACTIONS(1423), - [anon_sym_CARET_EQ] = ACTIONS(1423), - [anon_sym_PIPE_EQ] = ACTIONS(1423), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1423), - [anon_sym_DASH_GT] = ACTIONS(1423), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_RBRACK] = ACTIONS(1423), - [aux_sym_binary_expression_token1] = ACTIONS(1423), - [anon_sym_QMARK_QMARK] = ACTIONS(1425), - [aux_sym_binary_expression_token2] = ACTIONS(1423), - [aux_sym_binary_expression_token3] = ACTIONS(1423), - [aux_sym_binary_expression_token4] = ACTIONS(1423), - [anon_sym_PIPE_PIPE] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1423), - [anon_sym_CARET] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1425), - [anon_sym_BANG_EQ] = ACTIONS(1425), - [anon_sym_LT_GT] = ACTIONS(1423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1425), - [anon_sym_GT] = ACTIONS(1425), - [anon_sym_LT_EQ] = ACTIONS(1425), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_EQ_GT] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(1425), - [anon_sym_PERCENT] = ACTIONS(1425), - [sym_comment] = ACTIONS(1413), - }, - [593] = { - [sym_text_interpolation] = STATE(593), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_EQ] = ACTIONS(1429), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [aux_sym_base_clause_token1] = ACTIONS(1427), - [anon_sym_COLON] = ACTIONS(1429), - [aux_sym_class_interface_clause_token1] = ACTIONS(1427), - [anon_sym_EQ_GT] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_PIPE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_DOT_EQ] = ACTIONS(1427), - [anon_sym_LT_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_GT_EQ] = ACTIONS(1427), - [anon_sym_AMP_EQ] = ACTIONS(1427), - [anon_sym_CARET_EQ] = ACTIONS(1427), - [anon_sym_PIPE_EQ] = ACTIONS(1427), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1427), - [anon_sym_DASH_GT] = ACTIONS(1427), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_RBRACK] = ACTIONS(1427), - [aux_sym_binary_expression_token1] = ACTIONS(1427), - [anon_sym_QMARK_QMARK] = ACTIONS(1429), - [aux_sym_binary_expression_token2] = ACTIONS(1427), - [aux_sym_binary_expression_token3] = ACTIONS(1427), - [aux_sym_binary_expression_token4] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_LT_GT] = ACTIONS(1427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1429), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ_GT] = ACTIONS(1427), - [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_GT_GT] = ACTIONS(1429), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [sym_comment] = ACTIONS(1413), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_EQ, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(594), 1, - sym_text_interpolation, - STATE(600), 1, - sym_arguments, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1443), 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(1431), 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(1433), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [87] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(595), 1, - sym_text_interpolation, - STATE(607), 1, - sym_arguments, - ACTIONS(1447), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1445), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [166] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(596), 1, - sym_text_interpolation, - STATE(608), 1, - sym_arguments, - ACTIONS(1451), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1449), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [245] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(597), 1, - sym_text_interpolation, - STATE(610), 1, - sym_arguments, - ACTIONS(1455), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1453), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [324] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(598), 1, - sym_text_interpolation, - STATE(611), 1, - sym_arguments, - ACTIONS(1459), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1457), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [403] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(599), 1, - sym_text_interpolation, - STATE(601), 1, - sym_arguments, - ACTIONS(1463), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1461), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [482] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(600), 1, - sym_text_interpolation, - ACTIONS(1467), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1465), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [556] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(601), 1, - sym_text_interpolation, - ACTIONS(1471), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [630] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(602), 1, - sym_text_interpolation, - ACTIONS(1475), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1473), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [704] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(603), 1, - sym_text_interpolation, - ACTIONS(1479), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1477), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [778] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(604), 1, - sym_text_interpolation, - ACTIONS(1483), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1481), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [852] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(605), 1, - sym_text_interpolation, - ACTIONS(1487), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1485), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [926] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(606), 1, - sym_text_interpolation, - ACTIONS(1491), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1489), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1000] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(607), 1, - sym_text_interpolation, - ACTIONS(1495), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1493), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1074] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(608), 1, - sym_text_interpolation, - ACTIONS(1499), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1497), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1148] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(609), 1, - sym_text_interpolation, - ACTIONS(1503), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1501), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1222] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(610), 1, - sym_text_interpolation, - ACTIONS(1507), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1505), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1296] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(611), 1, - sym_text_interpolation, - ACTIONS(1511), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1509), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1370] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(612), 1, - sym_text_interpolation, - ACTIONS(1515), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1513), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1444] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1517), 1, - anon_sym_EQ, - STATE(600), 1, - sym_arguments, - STATE(613), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1519), 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(1431), 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(1433), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1529] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1521), 1, - anon_sym_EQ, - STATE(600), 1, - sym_arguments, - STATE(614), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1519), 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(1431), 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(1433), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1614] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_EQ, - STATE(615), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1443), 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(1431), 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(1433), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1695] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_EQ, - STATE(600), 1, - sym_arguments, - STATE(616), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1525), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1779] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1527), 1, - anon_sym_EQ, - STATE(600), 1, - sym_arguments, - STATE(617), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1525), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1863] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1521), 1, - anon_sym_EQ, - STATE(618), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1519), 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(1431), 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(1433), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1942] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_EQ, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(619), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1443), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2025] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(620), 1, - sym_text_interpolation, - STATE(636), 1, - sym_arguments, - ACTIONS(1459), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1457), 35, - 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_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, - [2100] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1517), 1, - anon_sym_EQ, - STATE(621), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1519), 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(1431), 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(1433), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2179] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(622), 1, - sym_text_interpolation, - STATE(633), 1, - sym_arguments, - ACTIONS(1463), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1461), 35, - 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_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, - [2254] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_EQ, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(623), 1, - sym_text_interpolation, - STATE(631), 1, - sym_arguments, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1443), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2337] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - ACTIONS(1533), 1, - anon_sym_EQ, - STATE(624), 1, - sym_text_interpolation, - STATE(631), 1, - sym_arguments, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1535), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2420] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(625), 1, - sym_text_interpolation, - STATE(639), 1, - sym_arguments, - ACTIONS(1455), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1453), 35, - 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_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, - [2495] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1517), 1, - anon_sym_EQ, - ACTIONS(1537), 1, - anon_sym_RPAREN, - STATE(600), 1, - sym_arguments, - STATE(626), 1, - sym_text_interpolation, - STATE(1914), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1519), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2584] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - anon_sym_EQ, - STATE(627), 1, - sym_text_interpolation, - STATE(631), 1, - sym_arguments, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1535), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2667] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(628), 1, - sym_text_interpolation, - STATE(630), 1, - sym_arguments, - ACTIONS(1447), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1445), 35, - 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_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, - [2742] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(629), 1, - sym_text_interpolation, - STATE(648), 1, - sym_arguments, - ACTIONS(1451), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1449), 35, - 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_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, - [2817] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(630), 1, - sym_text_interpolation, - ACTIONS(1495), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1493), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [2887] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(631), 1, - sym_text_interpolation, - ACTIONS(1467), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1465), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [2957] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(632), 1, - sym_text_interpolation, - ACTIONS(1515), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1513), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [3027] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(633), 1, - sym_text_interpolation, - ACTIONS(1471), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1469), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [3097] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1517), 1, - anon_sym_EQ, - STATE(600), 1, - sym_arguments, - STATE(634), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1541), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1519), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [3181] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1527), 1, - anon_sym_EQ, - STATE(635), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1525), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [3259] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(636), 1, - sym_text_interpolation, - ACTIONS(1511), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1509), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [3329] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1523), 1, - anon_sym_EQ, - STATE(637), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1525), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [3407] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1543), 1, - anon_sym_EQ, - STATE(600), 1, - sym_arguments, - STATE(638), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1545), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [3489] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(639), 1, - sym_text_interpolation, - ACTIONS(1507), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1505), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [3559] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(640), 1, - sym_text_interpolation, - ACTIONS(1487), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1485), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [3629] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(641), 1, - sym_text_interpolation, - ACTIONS(1479), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1477), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [3699] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(642), 1, - sym_text_interpolation, - ACTIONS(1491), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1489), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [3769] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(643), 1, - sym_text_interpolation, - ACTIONS(1429), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1427), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [3839] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_EQ, - STATE(600), 1, - sym_arguments, - STATE(644), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1547), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1525), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [3923] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1550), 1, - anon_sym_EQ, - STATE(600), 1, - sym_arguments, - STATE(645), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1545), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4005] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(646), 1, - sym_text_interpolation, - ACTIONS(1419), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1417), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [4075] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(647), 1, - sym_text_interpolation, - ACTIONS(1483), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1481), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [4145] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(648), 1, - sym_text_interpolation, - ACTIONS(1499), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1497), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [4215] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(649), 1, - sym_text_interpolation, - ACTIONS(1503), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1501), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [4285] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(650), 1, - sym_text_interpolation, - ACTIONS(1425), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1423), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [4355] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1517), 1, - anon_sym_EQ, - STATE(600), 1, - sym_arguments, - STATE(651), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1519), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4439] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(652), 1, - sym_text_interpolation, - ACTIONS(1475), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1473), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [4509] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(653), 1, - sym_text_interpolation, - ACTIONS(1411), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1409), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [4579] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1533), 1, - anon_sym_EQ, - STATE(654), 1, - sym_text_interpolation, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1535), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4656] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_EQ, - STATE(655), 1, - sym_text_interpolation, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1443), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4733] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1435), 1, - anon_sym_EQ, - STATE(656), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1443), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4810] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1517), 1, - anon_sym_EQ, - ACTIONS(1537), 1, - anon_sym_RPAREN, - STATE(657), 1, - sym_text_interpolation, - STATE(1914), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1519), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4893] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_EQ, - STATE(600), 1, - sym_arguments, - STATE(658), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1525), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4976] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1539), 1, - anon_sym_EQ, - STATE(659), 1, - sym_text_interpolation, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1535), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5053] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1517), 1, - anon_sym_EQ, - STATE(660), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1541), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1519), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5131] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1523), 1, - anon_sym_EQ, - STATE(661), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1547), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1525), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5209] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1550), 1, - anon_sym_EQ, - STATE(662), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1545), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5285] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1543), 1, - anon_sym_EQ, - STATE(663), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1545), 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(1431), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5361] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1517), 1, - anon_sym_EQ, - STATE(664), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1519), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5439] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1523), 1, - anon_sym_EQ, - STATE(665), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1431), 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(1525), 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(1433), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [5516] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(666), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 25, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5585] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(667), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1435), 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(1443), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5652] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(668), 1, - sym_text_interpolation, - STATE(722), 1, - sym_arguments, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1559), 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(1557), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5723] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(669), 1, - sym_text_interpolation, - ACTIONS(1503), 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(1501), 34, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_class_interface_clause_token1, - aux_sym_use_instead_of_clause_token1, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5784] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(600), 1, - sym_arguments, - STATE(670), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5855] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(600), 1, - sym_arguments, - STATE(671), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 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_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(1566), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5926] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(672), 1, - sym_text_interpolation, - 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(1570), 34, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOLLAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5986] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(601), 1, - sym_arguments, - STATE(673), 1, - sym_text_interpolation, - ACTIONS(1576), 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(1574), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_use_instead_of_clause_token1, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6050] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(607), 1, - sym_arguments, - STATE(674), 1, - sym_text_interpolation, - ACTIONS(1447), 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(1445), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6113] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(675), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6178] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(676), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1435), 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(1443), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6239] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(677), 1, - sym_text_interpolation, - STATE(725), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1580), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6304] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(678), 1, - sym_text_interpolation, - STATE(730), 1, - sym_arguments, - ACTIONS(1451), 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(1449), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6367] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(679), 1, - sym_text_interpolation, - STATE(729), 1, - sym_arguments, - ACTIONS(1447), 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(1445), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6430] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(607), 1, - sym_arguments, - STATE(680), 1, - sym_text_interpolation, - ACTIONS(1447), 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(1445), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6491] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(610), 1, - sym_arguments, - STATE(681), 1, - sym_text_interpolation, - ACTIONS(1455), 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(1453), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6552] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(601), 1, - sym_arguments, - STATE(682), 1, - sym_text_interpolation, - ACTIONS(1463), 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(1461), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6615] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(611), 1, - sym_arguments, - STATE(683), 1, - sym_text_interpolation, - ACTIONS(1459), 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(1457), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6676] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(611), 1, - sym_arguments, - STATE(684), 1, - sym_text_interpolation, - ACTIONS(1459), 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(1457), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6739] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(610), 1, - sym_arguments, - STATE(685), 1, - sym_text_interpolation, - ACTIONS(1455), 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(1453), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6802] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(601), 1, - sym_arguments, - STATE(686), 1, - sym_text_interpolation, - ACTIONS(1463), 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(1461), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6863] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(608), 1, - sym_arguments, - STATE(687), 1, - sym_text_interpolation, - ACTIONS(1451), 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(1449), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6926] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(688), 1, - sym_text_interpolation, - STATE(711), 1, - sym_arguments, - ACTIONS(1455), 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(1453), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6989] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(689), 1, - sym_text_interpolation, - STATE(714), 1, - sym_arguments, - ACTIONS(1459), 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(1457), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7052] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(690), 1, - sym_text_interpolation, - ACTIONS(1437), 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_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(1566), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7117] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(691), 1, - sym_text_interpolation, - ACTIONS(1437), 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_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(1566), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7182] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(692), 1, - sym_text_interpolation, - STATE(719), 1, - sym_arguments, - ACTIONS(1463), 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(1461), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7245] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1589), 1, - anon_sym_EQ, - STATE(693), 1, - sym_text_interpolation, - ACTIONS(1586), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1584), 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(1582), 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_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7308] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(694), 1, - sym_text_interpolation, - STATE(725), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1593), 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(1591), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7373] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(608), 1, - sym_arguments, - STATE(695), 1, - sym_text_interpolation, - ACTIONS(1451), 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(1449), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7434] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(696), 1, - sym_text_interpolation, - STATE(722), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1559), 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(1557), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7499] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1595), 1, - anon_sym_LPAREN, - STATE(697), 1, - sym_text_interpolation, - STATE(876), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1559), 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(1557), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7564] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(698), 1, - sym_text_interpolation, - STATE(722), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1559), 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(1557), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7629] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(699), 1, - sym_text_interpolation, - ACTIONS(1441), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 25, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7692] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(700), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7757] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(701), 1, - sym_text_interpolation, - STATE(725), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1435), 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(1443), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7822] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(702), 1, - sym_text_interpolation, - ACTIONS(1515), 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(1513), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7880] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(703), 1, - sym_text_interpolation, - ACTIONS(1425), 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(1423), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7938] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(704), 1, - sym_text_interpolation, - ACTIONS(1599), 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(1597), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7996] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(705), 1, - sym_text_interpolation, - ACTIONS(1411), 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(1409), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8054] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(706), 1, - sym_text_interpolation, - ACTIONS(1483), 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(1481), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8112] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(707), 1, - sym_text_interpolation, - ACTIONS(1475), 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(1473), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8170] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(708), 1, - sym_text_interpolation, - ACTIONS(1603), 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(1601), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8228] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(709), 1, - sym_text_interpolation, - ACTIONS(1607), 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(1605), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_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] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(710), 1, - sym_text_interpolation, - ACTIONS(1611), 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(1609), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8344] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(711), 1, - sym_text_interpolation, - ACTIONS(1507), 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(1505), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8402] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1613), 1, - anon_sym_COLON_COLON, - STATE(712), 1, - sym_text_interpolation, - ACTIONS(1503), 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(1501), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8462] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(713), 1, - sym_text_interpolation, - ACTIONS(1617), 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(1615), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8520] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(714), 1, - sym_text_interpolation, - ACTIONS(1511), 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(1509), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8578] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(715), 1, - sym_text_interpolation, - ACTIONS(1419), 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(1417), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8636] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(716), 1, - sym_text_interpolation, - ACTIONS(1621), 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(1619), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8694] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(717), 1, - sym_text_interpolation, - ACTIONS(1405), 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(1407), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8752] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(718), 1, - sym_text_interpolation, - ACTIONS(1491), 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(1489), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8810] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(719), 1, - sym_text_interpolation, - ACTIONS(1471), 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(1469), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8868] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(720), 1, - sym_text_interpolation, - ACTIONS(1625), 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(1623), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8926] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(721), 1, - sym_text_interpolation, - ACTIONS(1584), 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(1582), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [8984] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(722), 1, - sym_text_interpolation, - ACTIONS(1465), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1629), 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(1627), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9044] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(723), 1, - sym_text_interpolation, - ACTIONS(1487), 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(1485), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9102] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(724), 1, - sym_text_interpolation, - ACTIONS(1479), 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(1477), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9160] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(725), 1, - sym_text_interpolation, - ACTIONS(1467), 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(1465), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9218] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(726), 1, - sym_text_interpolation, - ACTIONS(1633), 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(1631), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9276] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(727), 1, - sym_text_interpolation, - ACTIONS(1637), 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(1635), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9334] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(728), 1, - sym_text_interpolation, - ACTIONS(1641), 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(1639), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9392] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(729), 1, - sym_text_interpolation, - ACTIONS(1495), 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(1493), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9450] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(730), 1, - sym_text_interpolation, - ACTIONS(1499), 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(1497), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9508] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(731), 1, - sym_text_interpolation, - ACTIONS(1645), 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(1643), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9566] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(732), 1, - sym_text_interpolation, - ACTIONS(1429), 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(1427), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9624] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(733), 1, - sym_text_interpolation, - ACTIONS(968), 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(966), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9681] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(631), 1, - sym_arguments, - STATE(734), 1, - sym_text_interpolation, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 22, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9746] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(735), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1593), 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(1591), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9805] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1647), 1, - sym_name, - ACTIONS(1653), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1656), 1, - anon_sym_BSLASH, - ACTIONS(1659), 1, - anon_sym_RBRACE, - ACTIONS(1661), 1, - anon_sym_LPAREN, - ACTIONS(1664), 1, - aux_sym_cast_type_token1, - ACTIONS(1667), 1, - anon_sym_LBRACK, - ACTIONS(1676), 1, - anon_sym_DOLLAR, - ACTIONS(1679), 1, - sym_heredoc, - STATE(1463), 1, - sym_class_constant_access_expression, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(1670), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(1673), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(736), 2, - sym_text_interpolation, - aux_sym_use_list_repeat1, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2236), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(1650), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1575), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1456), 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, - [9904] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(737), 1, - sym_text_interpolation, - STATE(800), 1, - sym_arguments, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1559), 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(1557), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9971] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(600), 1, - sym_arguments, - STATE(738), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1568), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1566), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10038] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(631), 1, - sym_arguments, - STATE(739), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1435), 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(1443), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10101] = 29, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(287), 1, - aux_sym__list_destructing_token1, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(688), 1, - anon_sym_AMP, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1684), 1, - sym_name, - ACTIONS(1686), 1, - anon_sym_LPAREN, - STATE(740), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(1802), 1, - sym_by_ref, - STATE(1803), 1, - sym__list_destructing, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1456), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1448), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1391), 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, - [10206] = 27, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1686), 1, - anon_sym_LPAREN, - ACTIONS(1688), 1, - sym_name, - ACTIONS(1690), 1, - anon_sym_RBRACE, - STATE(736), 1, - aux_sym_use_list_repeat1, - STATE(741), 1, - sym_text_interpolation, - STATE(1463), 1, - sym_class_constant_access_expression, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2236), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1575), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1456), 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, - [10307] = 29, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(287), 1, - aux_sym__list_destructing_token1, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(688), 1, - anon_sym_AMP, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1684), 1, - sym_name, - ACTIONS(1686), 1, - anon_sym_LPAREN, - STATE(742), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(2040), 1, - sym__list_destructing, - STATE(2155), 1, - sym_by_ref, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1456), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1453), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1394), 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, - [10412] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(743), 1, - sym_text_interpolation, - ACTIONS(1437), 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_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(1566), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10471] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1586), 1, - anon_sym_RPAREN, - ACTIONS(1589), 1, - anon_sym_EQ, - STATE(744), 1, - sym_text_interpolation, - ACTIONS(1584), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1582), 30, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10532] = 29, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1686), 1, - anon_sym_LPAREN, - ACTIONS(1692), 1, - sym_name, - ACTIONS(1696), 1, - aux_sym_class_declaration_token1, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - STATE(745), 1, - sym_text_interpolation, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1556), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2348), 1, - sym_attribute_list, - STATE(2367), 1, - sym__scope_resolution_qualifier, - STATE(2400), 1, - sym_namespace_name, - STATE(2401), 1, - sym_namespace_name_as_prefix, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(781), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1575), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1694), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(768), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(769), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(1456), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [10637] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(746), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1580), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10696] = 28, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(225), 1, - aux_sym_final_modifier_token1, - ACTIONS(227), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1702), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1704), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1706), 1, - sym_var_modifier, - ACTIONS(1710), 1, - anon_sym_QMARK, - ACTIONS(1714), 1, - anon_sym_DOLLAR, - STATE(747), 1, - sym_text_interpolation, - STATE(1183), 1, - aux_sym_property_declaration_repeat1, - STATE(1297), 1, - sym__modifier, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1553), 1, - sym__types, - STATE(1564), 1, - sym_variable_name, - STATE(1690), 1, - sym_property_element, - STATE(1694), 1, - sym__function_definition_header, - STATE(1792), 1, - sym__type, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(1708), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1293), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [10799] = 28, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(225), 1, - aux_sym_final_modifier_token1, - ACTIONS(227), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1702), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1704), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1706), 1, - sym_var_modifier, - ACTIONS(1710), 1, - anon_sym_QMARK, - ACTIONS(1714), 1, - anon_sym_DOLLAR, - STATE(748), 1, - sym_text_interpolation, - STATE(1183), 1, - aux_sym_property_declaration_repeat1, - STATE(1297), 1, - sym__modifier, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1553), 1, - sym__types, - STATE(1564), 1, - sym_variable_name, - STATE(1659), 1, - sym_property_element, - STATE(1660), 1, - sym__function_definition_header, - STATE(1837), 1, - sym__type, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(1708), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1293), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [10902] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(749), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1435), 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(1443), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [10961] = 27, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1686), 1, - anon_sym_LPAREN, - ACTIONS(1688), 1, - sym_name, - ACTIONS(1716), 1, - anon_sym_RBRACE, - STATE(741), 1, - aux_sym_use_list_repeat1, - STATE(750), 1, - sym_text_interpolation, - STATE(1463), 1, - sym_class_constant_access_expression, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2236), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1575), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1456), 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, - [11062] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(751), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11121] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(752), 1, - sym_text_interpolation, - ACTIONS(952), 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(950), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11178] = 29, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1686), 1, - anon_sym_LPAREN, - ACTIONS(1718), 1, - sym_name, - ACTIONS(1720), 1, - aux_sym_class_declaration_token1, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - STATE(753), 1, - sym_text_interpolation, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1594), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(2479), 1, - sym__scope_resolution_qualifier, - STATE(2513), 1, - sym_attribute_list, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(698), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1575), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(696), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(697), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1456), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [11283] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(631), 1, - sym_arguments, - STATE(754), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11350] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(1724), 1, - anon_sym_COLON, - STATE(631), 1, - sym_arguments, - STATE(755), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 21, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11418] = 28, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1728), 1, - anon_sym_COMMA, - ACTIONS(1730), 1, - anon_sym_RPAREN, - ACTIONS(1732), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1734), 1, - anon_sym_QMARK, - ACTIONS(1736), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(756), 1, - sym_text_interpolation, - STATE(1194), 1, - sym_attribute_list, - STATE(1280), 1, - sym_visibility_modifier, - STATE(1303), 1, - aux_sym_attribute_list_repeat2, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1612), 1, - sym__types, - STATE(1614), 1, - sym__type, - STATE(1961), 1, - sym_reference_modifier, - STATE(2015), 1, - sym_variable_name, - STATE(2364), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(229), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1883), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [11520] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(1740), 1, - anon_sym_COLON, - STATE(631), 1, - sym_arguments, - STATE(757), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 21, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11588] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(758), 1, - sym_text_interpolation, - ACTIONS(1744), 17, - sym_heredoc, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AT, - anon_sym_TILDE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_shell_command_expression, - anon_sym_LBRACK, - anon_sym_POUND_LBRACK, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_string_token1, - anon_sym_DOLLAR, - ACTIONS(1742), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_arrow_function_token1, - aux_sym_cast_type_token1, - sym_float, - sym_integer, - aux_sym_throw_expression_token1, - aux_sym_match_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_clone_expression_token1, - aux_sym_print_intrinsic_token1, - aux_sym_object_creation_expression_token1, - aux_sym__list_destructing_token1, - anon_sym_self, - anon_sym_parent, - sym_boolean, - sym_null, - aux_sym_yield_expression_token1, - aux_sym_include_expression_token1, - aux_sym_include_once_expression_token1, - aux_sym_require_expression_token1, - aux_sym_require_once_expression_token1, - sym_name, - [11644] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(1746), 1, - anon_sym_COLON, - STATE(600), 1, - sym_arguments, - STATE(759), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11712] = 28, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(688), 1, - anon_sym_AMP, - ACTIONS(796), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1684), 1, - sym_name, - ACTIONS(1686), 1, - anon_sym_LPAREN, - STATE(760), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(2092), 1, - sym__array_destructing, - STATE(2169), 1, - sym_by_ref, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1456), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1478), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1423), 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, - [11814] = 28, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1732), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1734), 1, - anon_sym_QMARK, - ACTIONS(1736), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(1748), 1, - anon_sym_COMMA, - ACTIONS(1750), 1, - anon_sym_RPAREN, - STATE(761), 1, - sym_text_interpolation, - STATE(1194), 1, - sym_attribute_list, - STATE(1280), 1, - sym_visibility_modifier, - STATE(1303), 1, - aux_sym_attribute_list_repeat2, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1612), 1, - sym__types, - STATE(1614), 1, - sym__type, - STATE(1961), 1, - sym_reference_modifier, - STATE(2015), 1, - sym_variable_name, - STATE(2364), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(229), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1966), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [11916] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(762), 1, - sym_text_interpolation, - STATE(808), 1, - sym_arguments, - ACTIONS(1447), 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(1445), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [11975] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(607), 1, - sym_arguments, - STATE(763), 1, - sym_text_interpolation, - ACTIONS(1447), 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(1445), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12032] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(601), 1, - sym_arguments, - STATE(764), 1, - sym_text_interpolation, - ACTIONS(1463), 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(1461), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12091] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(611), 1, - sym_arguments, - STATE(765), 1, - sym_text_interpolation, - ACTIONS(1459), 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(1457), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12150] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(766), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1568), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1566), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12211] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(633), 1, - sym_arguments, - STATE(767), 1, - sym_text_interpolation, - ACTIONS(1576), 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(1574), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12270] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1752), 1, - anon_sym_LPAREN, - STATE(768), 1, - sym_text_interpolation, - STATE(1124), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1559), 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(1557), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12331] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(769), 1, - sym_text_interpolation, - STATE(800), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1559), 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(1557), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12392] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(631), 1, - sym_arguments, - STATE(770), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12453] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(610), 1, - sym_arguments, - STATE(771), 1, - sym_text_interpolation, - ACTIONS(1455), 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(1453), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12512] = 27, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1732), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1734), 1, - anon_sym_QMARK, - ACTIONS(1736), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(1754), 1, - anon_sym_RPAREN, - STATE(772), 1, - sym_text_interpolation, - STATE(1194), 1, - sym_attribute_list, - STATE(1280), 1, - sym_visibility_modifier, - STATE(1303), 1, - aux_sym_attribute_list_repeat2, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1612), 1, - sym__types, - STATE(1614), 1, - sym__type, - STATE(1961), 1, - sym_reference_modifier, - STATE(2015), 1, - sym_variable_name, - STATE(2364), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(229), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2191), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [12611] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(607), 1, - sym_arguments, - STATE(773), 1, - sym_text_interpolation, - ACTIONS(1447), 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(1445), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12670] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(774), 1, - sym_text_interpolation, - 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(1570), 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_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12725] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(608), 1, - sym_arguments, - STATE(775), 1, - sym_text_interpolation, - ACTIONS(1451), 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(1449), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12784] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(776), 1, - sym_text_interpolation, - ACTIONS(1503), 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(1501), 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_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12839] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(777), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1568), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1566), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12900] = 27, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1732), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1734), 1, - anon_sym_QMARK, - ACTIONS(1736), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(1756), 1, - anon_sym_RPAREN, - STATE(778), 1, - sym_text_interpolation, - STATE(1194), 1, - sym_attribute_list, - STATE(1280), 1, - sym_visibility_modifier, - STATE(1303), 1, - aux_sym_attribute_list_repeat2, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1612), 1, - sym__types, - STATE(1614), 1, - sym__type, - STATE(1961), 1, - sym_reference_modifier, - STATE(2015), 1, - sym_variable_name, - STATE(2364), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(229), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2191), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [12999] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(631), 1, - sym_arguments, - STATE(779), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13060] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(780), 1, - sym_text_interpolation, - STATE(832), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1593), 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(1591), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13121] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(781), 1, - sym_text_interpolation, - STATE(800), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1559), 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(1557), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13182] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(782), 1, - sym_text_interpolation, - STATE(827), 1, - sym_arguments, - ACTIONS(1451), 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(1449), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13241] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(783), 1, - sym_text_interpolation, - STATE(832), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1580), 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13302] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(784), 1, - sym_text_interpolation, - ACTIONS(991), 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(989), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13357] = 27, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1732), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1734), 1, - anon_sym_QMARK, - ACTIONS(1736), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(1758), 1, - anon_sym_RPAREN, - STATE(785), 1, - sym_text_interpolation, - STATE(1194), 1, - sym_attribute_list, - STATE(1280), 1, - sym_visibility_modifier, - STATE(1303), 1, - aux_sym_attribute_list_repeat2, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1612), 1, - sym__types, - STATE(1614), 1, - sym__type, - STATE(1961), 1, - sym_reference_modifier, - STATE(2015), 1, - sym_variable_name, - STATE(2364), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(229), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2191), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [13456] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(611), 1, - sym_arguments, - STATE(786), 1, - sym_text_interpolation, - ACTIONS(1459), 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(1457), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13513] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1589), 1, - anon_sym_EQ, - STATE(787), 1, - sym_text_interpolation, - ACTIONS(1584), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1582), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13570] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(610), 1, - sym_arguments, - STATE(788), 1, - sym_text_interpolation, - ACTIONS(1455), 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(1453), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13627] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(789), 1, - sym_text_interpolation, - ACTIONS(1031), 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(1029), 30, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13682] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(790), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1435), 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(1443), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_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] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(791), 1, - sym_text_interpolation, - STATE(801), 1, - sym_arguments, - ACTIONS(1455), 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(1453), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13798] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(792), 1, - sym_text_interpolation, - STATE(825), 1, - sym_arguments, - ACTIONS(1459), 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(1457), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13857] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(793), 1, - sym_text_interpolation, - STATE(813), 1, - sym_arguments, - ACTIONS(1463), 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(1461), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13916] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(794), 1, - sym_text_interpolation, - ACTIONS(1531), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 22, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13975] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(608), 1, - sym_arguments, - STATE(795), 1, - sym_text_interpolation, - ACTIONS(1451), 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(1449), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14032] = 27, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1732), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1734), 1, - anon_sym_QMARK, - ACTIONS(1736), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(1760), 1, - anon_sym_RPAREN, - STATE(796), 1, - sym_text_interpolation, - STATE(1194), 1, - sym_attribute_list, - STATE(1280), 1, - sym_visibility_modifier, - STATE(1303), 1, - aux_sym_attribute_list_repeat2, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1612), 1, - sym__types, - STATE(1614), 1, - sym__type, - STATE(1961), 1, - sym_reference_modifier, - STATE(2015), 1, - sym_variable_name, - STATE(2364), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(229), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2191), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [14131] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(601), 1, - sym_arguments, - STATE(797), 1, - sym_text_interpolation, - ACTIONS(1463), 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(1461), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14188] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(798), 1, - sym_text_interpolation, - STATE(832), 1, - sym_arguments, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1435), 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(1443), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14249] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(799), 1, - sym_text_interpolation, - ACTIONS(1483), 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(1481), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14303] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(800), 1, - sym_text_interpolation, - ACTIONS(1465), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1629), 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(1627), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14359] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(801), 1, - sym_text_interpolation, - ACTIONS(1507), 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(1505), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14413] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(802), 1, - sym_text_interpolation, - ACTIONS(1607), 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(1605), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14467] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(803), 1, - sym_text_interpolation, - ACTIONS(1603), 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(1601), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14521] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(804), 1, - sym_text_interpolation, - ACTIONS(1645), 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(1643), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14575] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(805), 1, - sym_text_interpolation, - ACTIONS(1425), 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(1423), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14629] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(806), 1, - sym_text_interpolation, - ACTIONS(1429), 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(1427), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14683] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1732), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1734), 1, - anon_sym_QMARK, - ACTIONS(1736), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(807), 1, - sym_text_interpolation, - STATE(1194), 1, - sym_attribute_list, - STATE(1280), 1, - sym_visibility_modifier, - STATE(1303), 1, - aux_sym_attribute_list_repeat2, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1612), 1, - sym__types, - STATE(1614), 1, - sym__type, - STATE(1961), 1, - sym_reference_modifier, - STATE(2015), 1, - sym_variable_name, - STATE(2364), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(229), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2191), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [14779] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(808), 1, - sym_text_interpolation, - ACTIONS(1495), 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(1493), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14833] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1589), 1, - anon_sym_EQ, - STATE(809), 1, - sym_text_interpolation, - ACTIONS(1584), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1582), 28, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14889] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(810), 1, - sym_text_interpolation, - ACTIONS(1641), 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(1639), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_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] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(811), 1, - sym_text_interpolation, - ACTIONS(1637), 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(1635), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [14997] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(812), 1, - sym_text_interpolation, - ACTIONS(1515), 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(1513), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15051] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(813), 1, - sym_text_interpolation, - ACTIONS(1471), 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(1469), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15105] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(814), 1, - sym_text_interpolation, - ACTIONS(1411), 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(1409), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15159] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(815), 1, - sym_text_interpolation, - ACTIONS(1475), 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(1473), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15213] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(816), 1, - sym_text_interpolation, - ACTIONS(1611), 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(1609), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15267] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(817), 1, - sym_text_interpolation, - ACTIONS(1479), 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(1477), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_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(1413), 1, - sym_comment, - STATE(818), 1, - sym_text_interpolation, - ACTIONS(1584), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1582), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15375] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(819), 1, - sym_text_interpolation, - ACTIONS(1491), 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(1489), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15429] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(820), 1, - sym_text_interpolation, - ACTIONS(1405), 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(1407), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15483] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(821), 1, - sym_text_interpolation, - ACTIONS(1633), 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(1631), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15537] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(822), 1, - sym_text_interpolation, - ACTIONS(1487), 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(1485), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15591] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(823), 1, - sym_text_interpolation, - ACTIONS(1625), 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(1623), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15645] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(824), 1, - sym_text_interpolation, - ACTIONS(1617), 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(1615), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15699] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(825), 1, - sym_text_interpolation, - ACTIONS(1511), 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(1509), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15753] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1589), 1, - anon_sym_EQ, - STATE(826), 1, - sym_text_interpolation, - ACTIONS(1762), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1584), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1582), 26, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15811] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(827), 1, - sym_text_interpolation, - ACTIONS(1499), 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(1497), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15865] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(828), 1, - sym_text_interpolation, - ACTIONS(1419), 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(1417), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15919] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1613), 1, - anon_sym_COLON_COLON, - STATE(829), 1, - sym_text_interpolation, - ACTIONS(1503), 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(1501), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15975] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(830), 1, - sym_text_interpolation, - ACTIONS(1599), 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(1597), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16029] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(831), 1, - sym_text_interpolation, - ACTIONS(1621), 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(1619), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16083] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(832), 1, - sym_text_interpolation, - ACTIONS(1467), 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(1465), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16137] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1684), 1, - sym_name, - ACTIONS(1686), 1, - anon_sym_LPAREN, - STATE(833), 1, - sym_text_interpolation, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(746), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1456), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1575), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(1392), 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, - [16230] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1686), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(1764), 1, - sym_name, - STATE(834), 1, - sym_text_interpolation, - STATE(1585), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2400), 1, - sym_namespace_name, - STATE(2401), 1, - sym_namespace_name_as_prefix, - STATE(2483), 1, - sym__scope_resolution_qualifier, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(766), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1575), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1694), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(777), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(850), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1456), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [16323] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1684), 1, - sym_name, - ACTIONS(1686), 1, - anon_sym_LPAREN, - STATE(835), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1456), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1472), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1398), 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, - [16416] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1684), 1, - sym_name, - ACTIONS(1686), 1, - anon_sym_LPAREN, - STATE(836), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1456), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1446), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1389), 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, - [16509] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(837), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1435), 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(1443), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16564] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(1766), 1, - sym_name, - ACTIONS(1768), 1, - anon_sym_LPAREN, - STATE(838), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1584), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(2430), 1, - sym__scope_resolution_qualifier, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1486), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1491), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(837), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(798), 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, - [16657] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1686), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(1770), 1, - sym_name, - STATE(839), 1, - sym_text_interpolation, - STATE(1619), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2361), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(746), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1488), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1482), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1575), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(677), 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, - [16750] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(1766), 1, - sym_name, - ACTIONS(1768), 1, - anon_sym_LPAREN, - STATE(840), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1584), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(2430), 1, - sym__scope_resolution_qualifier, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1486), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1491), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(846), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(780), 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, - [16843] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(1770), 1, - sym_name, - ACTIONS(1772), 1, - anon_sym_LPAREN, - STATE(841), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1619), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(2481), 1, - sym__scope_resolution_qualifier, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1488), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1482), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(749), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(701), 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, - [16936] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(299), 1, - anon_sym_DOLLAR, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1774), 1, - sym_name, - ACTIONS(1776), 1, - anon_sym_LPAREN, - STATE(842), 1, - sym_text_interpolation, - STATE(1562), 1, - sym__dereferencable_expression, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(2486), 1, - sym__scope_resolution_qualifier, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1483), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1489), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(790), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(739), 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, - [17029] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(843), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1580), 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17084] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1684), 1, - sym_name, - ACTIONS(1686), 1, - anon_sym_LPAREN, - STATE(844), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1456), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(676), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(667), 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, - [17177] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(845), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1433), 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(1431), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17232] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(846), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1593), 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(1591), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17287] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1415), 1, - anon_sym_LPAREN, - ACTIONS(1684), 1, - sym_name, - STATE(847), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1593), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1456), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(676), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(667), 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, - [17380] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(1770), 1, - sym_name, - ACTIONS(1772), 1, - anon_sym_LPAREN, - STATE(848), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1619), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(2481), 1, - sym__scope_resolution_qualifier, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1488), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1482), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(735), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(694), 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, - [17473] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1686), 1, - anon_sym_LPAREN, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(1766), 1, - sym_name, - STATE(849), 1, - sym_text_interpolation, - STATE(1584), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2345), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(843), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1486), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1491), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1575), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(783), 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, - [17566] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(850), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1568), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1566), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17621] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1684), 1, - sym_name, - ACTIONS(1686), 1, - anon_sym_LPAREN, - STATE(851), 1, - sym_text_interpolation, - STATE(1575), 1, - sym_class_constant_access_expression, - STATE(1611), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2383), 1, - sym__scope_resolution_qualifier, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1462), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1456), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1436), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1390), 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, - [17714] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(562), 1, - aux_sym_cast_type_token1, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1401), 1, - anon_sym_LBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1686), 1, - anon_sym_LPAREN, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(1778), 1, - sym_name, - STATE(852), 1, - sym_text_interpolation, - STATE(1554), 1, - sym__dereferencable_expression, - STATE(2342), 1, - sym_relative_scope, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(2484), 1, - sym__scope_resolution_qualifier, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(691), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(716), 2, - sym_encapsed_string, - sym_string, - STATE(1575), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(291), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(690), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(743), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1456), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [17807] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(853), 1, - sym_text_interpolation, - ACTIONS(1782), 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(1780), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17859] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(854), 1, - sym_text_interpolation, - ACTIONS(1786), 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(1784), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17911] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(855), 1, - sym_text_interpolation, - ACTIONS(1790), 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(1788), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17963] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(856), 1, - sym_text_interpolation, - ACTIONS(1794), 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(1792), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18015] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(857), 1, - sym_text_interpolation, - ACTIONS(1798), 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(1796), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18067] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1800), 1, - aux_sym_binary_expression_token1, - STATE(858), 1, - sym_text_interpolation, - ACTIONS(1790), 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(1788), 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_STAR_STAR, - anon_sym_RBRACK, - 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, - [18121] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(859), 1, - sym_text_interpolation, - ACTIONS(1804), 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(1802), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18173] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(860), 1, - sym_text_interpolation, - ACTIONS(1433), 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(1431), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18225] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(861), 1, - sym_text_interpolation, - ACTIONS(1808), 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(1806), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18277] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(862), 1, - sym_text_interpolation, - ACTIONS(1812), 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(1810), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18329] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(863), 1, - sym_text_interpolation, - ACTIONS(1816), 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(1814), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18381] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(864), 1, - sym_text_interpolation, - ACTIONS(1820), 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(1818), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18433] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(865), 1, - sym_text_interpolation, - ACTIONS(1824), 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(1822), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18485] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(866), 1, - sym_text_interpolation, - ACTIONS(1828), 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(1826), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18537] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(867), 1, - sym_text_interpolation, - ACTIONS(1832), 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(1830), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18589] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(868), 1, - sym_text_interpolation, - ACTIONS(1836), 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(1834), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18641] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(869), 1, - sym_text_interpolation, - ACTIONS(1840), 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(1838), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18693] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(870), 1, - sym_text_interpolation, - ACTIONS(1844), 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(1842), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18745] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(871), 1, - sym_text_interpolation, - ACTIONS(1848), 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(1846), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18797] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(872), 1, - sym_text_interpolation, - ACTIONS(1429), 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(1427), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18849] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(873), 1, - sym_text_interpolation, - ACTIONS(1852), 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(1850), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18901] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(874), 1, - sym_text_interpolation, - ACTIONS(1593), 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(1591), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [18953] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(875), 1, - sym_text_interpolation, - ACTIONS(1856), 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(1854), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19005] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(876), 1, - sym_text_interpolation, - ACTIONS(1629), 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(1627), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19057] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(877), 1, - sym_text_interpolation, - ACTIONS(1425), 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(1423), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19109] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(878), 1, - sym_text_interpolation, - ACTIONS(1411), 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(1409), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19161] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(879), 1, - sym_text_interpolation, - ACTIONS(1860), 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(1858), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19213] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(880), 1, - sym_text_interpolation, - ACTIONS(1864), 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(1862), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19265] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(881), 1, - sym_text_interpolation, - ACTIONS(1868), 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(1866), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19317] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(882), 1, - sym_text_interpolation, - ACTIONS(1872), 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(1870), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19369] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(883), 1, - sym_text_interpolation, - ACTIONS(1419), 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(1417), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19421] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(884), 1, - sym_text_interpolation, - ACTIONS(1876), 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(1874), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19473] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(885), 1, - sym_text_interpolation, - ACTIONS(1880), 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(1878), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19525] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(886), 1, - sym_text_interpolation, - ACTIONS(1884), 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(1882), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19577] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(887), 1, - sym_text_interpolation, - ACTIONS(1888), 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(1886), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19629] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(888), 1, - sym_text_interpolation, - ACTIONS(1892), 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(1890), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19681] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(889), 1, - sym_text_interpolation, - ACTIONS(1896), 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(1894), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19733] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(890), 1, - sym_text_interpolation, - ACTIONS(1900), 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(1898), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19785] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(891), 1, - sym_text_interpolation, - ACTIONS(1904), 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(1902), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19837] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(892), 1, - sym_text_interpolation, - ACTIONS(1908), 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(1906), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19889] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(893), 1, - sym_text_interpolation, - ACTIONS(1912), 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(1910), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19941] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(894), 1, - sym_text_interpolation, - ACTIONS(1916), 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(1914), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19993] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(895), 1, - sym_text_interpolation, - ACTIONS(1920), 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(1918), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20045] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(896), 1, - sym_text_interpolation, - ACTIONS(1924), 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(1922), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20097] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(897), 1, - sym_text_interpolation, - ACTIONS(1928), 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(1926), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20149] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(898), 1, - sym_text_interpolation, - ACTIONS(1932), 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(1930), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20201] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(899), 1, - sym_text_interpolation, - ACTIONS(1568), 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(1566), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20253] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(900), 1, - sym_text_interpolation, - ACTIONS(1936), 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(1934), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20305] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(901), 1, - sym_text_interpolation, - ACTIONS(1940), 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(1938), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20357] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(902), 1, - sym_text_interpolation, - ACTIONS(1944), 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(1942), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20409] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(903), 1, - sym_text_interpolation, - ACTIONS(1948), 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(1946), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20461] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(904), 1, - sym_text_interpolation, - ACTIONS(1952), 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(1950), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20513] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(905), 1, - sym_text_interpolation, - ACTIONS(1956), 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(1954), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20565] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(906), 1, - sym_text_interpolation, - ACTIONS(1960), 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(1958), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20617] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(907), 1, - sym_text_interpolation, - ACTIONS(1964), 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(1962), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20669] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(908), 1, - sym_text_interpolation, - ACTIONS(1968), 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(1966), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20721] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(909), 1, - sym_text_interpolation, - ACTIONS(1972), 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(1970), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20773] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(910), 1, - sym_text_interpolation, - ACTIONS(1976), 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(1974), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20825] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(911), 1, - sym_text_interpolation, - ACTIONS(1980), 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(1978), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20877] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(912), 1, - sym_text_interpolation, - ACTIONS(1984), 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(1982), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20929] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(913), 1, - sym_text_interpolation, - ACTIONS(1988), 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(1986), 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_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20981] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(914), 1, - sym_text_interpolation, - ACTIONS(1031), 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(1029), 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [21032] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(915), 1, - sym_text_interpolation, - ACTIONS(991), 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(989), 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [21083] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_STAR_STAR, - STATE(916), 1, - sym_text_interpolation, - ACTIONS(1868), 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(1866), 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, - [21135] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(917), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1992), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [21221] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(918), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2032), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [21307] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(919), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2034), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [21393] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(920), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2036), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [21479] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_STAR_STAR, - STATE(921), 1, - sym_text_interpolation, - ACTIONS(1794), 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(1792), 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, - [21531] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(922), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2038), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [21617] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(923), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2040), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [21703] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(924), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2042), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [21789] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(925), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2044), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [21875] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(926), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2046), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [21961] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(927), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2048), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [22041] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(928), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2050), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [22121] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(929), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 21, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT, - [22179] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(930), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 23, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [22235] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(931), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2052), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [22321] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(932), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 20, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [22381] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(933), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2054), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [22467] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(934), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1568), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 19, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [22531] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(935), 1, - sym_text_interpolation, - ACTIONS(1568), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 15, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [22601] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(936), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2056), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [22687] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(937), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2058), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [22773] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_QMARK, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(938), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 14, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [22847] = 18, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_QMARK, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(939), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 13, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [22923] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(940), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 10, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [23005] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(941), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2060), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [23091] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(942), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 9, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [23175] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(943), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [23255] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - ACTIONS(2064), 1, - anon_sym_QMARK, - STATE(944), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2062), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [23335] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(945), 1, - sym_text_interpolation, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 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, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [23389] = 16, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(946), 1, - sym_text_interpolation, - ACTIONS(1568), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 14, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [23461] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(947), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 15, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [23529] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(948), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2066), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [23615] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - ACTIONS(2070), 1, - anon_sym_QMARK, - STATE(949), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2068), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [23695] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(950), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2072), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [23775] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(951), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1796), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [23861] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(952), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2074), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [23947] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(953), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2076), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24033] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(954), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2078), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24119] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(955), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2080), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24205] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(956), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2082), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24291] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(957), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2084), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24377] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - ACTIONS(2086), 1, - anon_sym_EQ_GT, - STATE(958), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1850), 7, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24465] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - ACTIONS(2090), 1, - anon_sym_QMARK, - STATE(959), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2088), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [24545] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(960), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2092), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24631] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(961), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2094), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24717] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(962), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1814), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24803] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2030), 1, - anon_sym_PERCENT, - STATE(963), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2028), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2096), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24889] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_STAR_STAR, - STATE(964), 1, - sym_text_interpolation, - ACTIONS(1790), 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(1788), 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, - [24941] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(965), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2076), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [25026] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(966), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [25093] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(967), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1814), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [25178] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(968), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2096), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [25263] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(969), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2046), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [25348] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2136), 1, - anon_sym_STAR_STAR, - STATE(970), 1, - sym_text_interpolation, - ACTIONS(1794), 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(1792), 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, - [25399] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(971), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2044), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [25484] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2136), 1, - anon_sym_STAR_STAR, - STATE(972), 1, - sym_text_interpolation, - ACTIONS(1790), 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(1788), 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, - [25535] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(973), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2042), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [25620] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(974), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2038), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [25705] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(975), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1992), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [25790] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(976), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2032), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [25875] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(977), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2034), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [25960] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(978), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2036), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26045] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(979), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2052), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26130] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(980), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2054), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26215] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(981), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2060), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26300] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(982), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2074), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26385] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_QMARK, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(983), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2088), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [26464] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(984), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1796), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26549] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - ACTIONS(2138), 1, - anon_sym_EQ_GT, - STATE(985), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1850), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26636] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(986), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2094), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26721] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(987), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2084), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26806] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(988), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2082), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26891] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(989), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2080), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [26976] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(990), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2056), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [27061] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(991), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2058), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [27146] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(992), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2072), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27225] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2070), 1, - anon_sym_QMARK, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(993), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2068), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27304] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(994), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2040), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [27389] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(995), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2048), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27468] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(996), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2050), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27547] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(997), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 20, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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, - [27604] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(998), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [27659] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(999), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [27718] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1000), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1568), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 18, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_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, - [27781] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1001), 1, - sym_text_interpolation, - ACTIONS(1568), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [27850] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_QMARK, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1002), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [27923] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1003), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2078), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [28008] = 18, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_QMARK, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1004), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [28083] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1005), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28164] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1006), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2092), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [28249] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1007), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [28332] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1008), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28411] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_QMARK, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1009), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2062), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28490] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1010), 1, - sym_text_interpolation, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - 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, - [28543] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1011), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2066), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [28628] = 16, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2134), 1, - anon_sym_PERCENT, - STATE(1012), 1, - sym_text_interpolation, - ACTIONS(1568), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2132), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [28699] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2136), 1, - anon_sym_STAR_STAR, - STATE(1013), 1, - sym_text_interpolation, - ACTIONS(1868), 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(1866), 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, - [28750] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1014), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2082), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [28834] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1015), 1, - sym_text_interpolation, - ACTIONS(952), 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(950), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [28882] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1016), 1, - sym_text_interpolation, - ACTIONS(968), 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(966), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [28930] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - ACTIONS(2178), 1, - anon_sym_EQ_GT, - STATE(1017), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1850), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [29016] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1018), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2056), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [29100] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1019), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2032), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [29184] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1020), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2058), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [29268] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1021), 1, - sym_text_interpolation, - ACTIONS(1876), 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(1874), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [29316] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1022), 1, - sym_text_interpolation, - ACTIONS(1964), 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(1962), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [29364] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1023), 1, - sym_text_interpolation, - ACTIONS(1948), 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(1946), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [29412] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1024), 1, - sym_text_interpolation, - ACTIONS(1419), 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(1417), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [29460] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1025), 1, - sym_text_interpolation, - ACTIONS(1411), 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(1409), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [29508] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1026), 1, - sym_text_interpolation, - ACTIONS(1425), 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(1423), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [29556] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1027), 1, - sym_text_interpolation, - ACTIONS(1944), 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(1942), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [29604] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1028), 1, - sym_text_interpolation, - ACTIONS(1429), 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(1427), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [29652] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1029), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2066), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [29736] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1030), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2048), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [29814] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1031), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2050), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [29892] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1032), 1, - sym_text_interpolation, - ACTIONS(1568), 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(1566), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [29940] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1033), 1, - sym_text_interpolation, - ACTIONS(1786), 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(1784), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [29988] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1034), 1, - sym_text_interpolation, - ACTIONS(1860), 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(1858), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30036] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1035), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 19, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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, - [30092] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1036), 1, - sym_text_interpolation, - ACTIONS(1848), 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(1846), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30140] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1037), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 21, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [30194] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1038), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 18, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [30252] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1039), 1, - sym_text_interpolation, - ACTIONS(1916), 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(1914), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30300] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1040), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1568), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 17, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [30362] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1041), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2078), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [30446] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1042), 1, - sym_text_interpolation, - ACTIONS(1912), 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(1910), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30494] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1043), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2060), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [30578] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1044), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2074), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [30662] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1045), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2034), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [30746] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1046), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2036), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [30830] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1047), 1, - sym_text_interpolation, - ACTIONS(1568), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [30898] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1048), 1, - sym_text_interpolation, - ACTIONS(1832), 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(1830), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30946] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1049), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2084), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [31030] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1050), 1, - sym_text_interpolation, - ACTIONS(1790), 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(1788), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31078] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1051), 1, - sym_text_interpolation, - ACTIONS(1968), 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(1966), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31126] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1052), 1, - sym_text_interpolation, - ACTIONS(1960), 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(1958), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31174] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1053), 1, - sym_text_interpolation, - ACTIONS(1952), 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(1950), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31222] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1054), 1, - sym_text_interpolation, - ACTIONS(1940), 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(1938), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31270] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1055), 1, - sym_text_interpolation, - ACTIONS(1794), 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(1792), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31318] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1056), 1, - sym_text_interpolation, - ACTIONS(1936), 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(1934), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31366] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1057), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2080), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [31450] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1058), 1, - sym_text_interpolation, - ACTIONS(1924), 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(1922), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31498] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1059), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2076), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [31582] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1060), 1, - sym_text_interpolation, - ACTIONS(1593), 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(1591), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31630] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1061), 1, - sym_text_interpolation, - ACTIONS(1884), 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(1882), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31678] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2180), 1, - anon_sym_STAR_STAR, - STATE(1062), 1, - sym_text_interpolation, - ACTIONS(1794), 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(1792), 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, - [31728] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1063), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2052), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [31812] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1064), 1, - sym_text_interpolation, - ACTIONS(1840), 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(1838), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31860] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1065), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1814), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [31944] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1066), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2054), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [32028] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2182), 1, - aux_sym_binary_expression_token1, - STATE(1067), 1, - sym_text_interpolation, - ACTIONS(1790), 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(1788), 23, - 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_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32078] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_QMARK, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1068), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [32150] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1069), 1, - sym_text_interpolation, - ACTIONS(1972), 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(1970), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32198] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1070), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1796), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [32282] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2180), 1, - anon_sym_STAR_STAR, - STATE(1071), 1, - sym_text_interpolation, - ACTIONS(1790), 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(1788), 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, - [32332] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1072), 1, - sym_text_interpolation, - ACTIONS(1798), 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(1796), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32380] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1073), 1, - sym_text_interpolation, - ACTIONS(1920), 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(1918), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32428] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1074), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2040), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [32512] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1075), 1, - sym_text_interpolation, - ACTIONS(1908), 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(1906), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32560] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1076), 1, - sym_text_interpolation, - ACTIONS(1904), 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(1902), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32608] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1077), 1, - sym_text_interpolation, - ACTIONS(1892), 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(1890), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32656] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1078), 1, - sym_text_interpolation, - ACTIONS(1836), 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(1834), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32704] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1079), 1, - sym_text_interpolation, - ACTIONS(1928), 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(1926), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32752] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1080), 1, - sym_text_interpolation, - ACTIONS(1828), 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(1826), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32800] = 18, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_QMARK, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1081), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [32874] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1082), 1, - sym_text_interpolation, - ACTIONS(1932), 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(1930), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [32922] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1083), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [33002] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1084), 1, - sym_text_interpolation, - ACTIONS(1824), 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(1822), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33050] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1085), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 7, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [33132] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1086), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1992), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [33216] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1087), 1, - sym_text_interpolation, - ACTIONS(1988), 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(1986), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33264] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2070), 1, - anon_sym_QMARK, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1088), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2068), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [33342] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1089), 1, - sym_text_interpolation, - ACTIONS(1984), 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(1982), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33390] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1090), 1, - sym_text_interpolation, - ACTIONS(1980), 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(1978), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33438] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1091), 1, - sym_text_interpolation, - ACTIONS(1976), 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(1974), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33486] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1092), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2072), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [33564] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1093), 1, - sym_text_interpolation, - ACTIONS(1852), 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(1850), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33612] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1094), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2038), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [33696] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1095), 1, - sym_text_interpolation, - ACTIONS(1864), 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(1862), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33744] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1096), 1, - sym_text_interpolation, - ACTIONS(1804), 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(1802), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33792] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1097), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2042), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [33876] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1098), 1, - sym_text_interpolation, - ACTIONS(1812), 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(1810), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33924] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1099), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2044), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [34008] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1100), 1, - sym_text_interpolation, - ACTIONS(1808), 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(1806), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34056] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1101), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [34134] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_QMARK, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1102), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2062), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [34212] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_QMARK, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1103), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2088), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [34290] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1104), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2094), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [34374] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1105), 1, - sym_text_interpolation, - ACTIONS(1433), 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(1431), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34422] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1106), 1, - sym_text_interpolation, - ACTIONS(1782), 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(1780), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34470] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1107), 1, - sym_text_interpolation, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 23, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [34522] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1108), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2092), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [34606] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1109), 1, - sym_text_interpolation, - ACTIONS(1820), 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(1818), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34654] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1110), 1, - sym_text_interpolation, - ACTIONS(1816), 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(1814), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34702] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1111), 1, - sym_text_interpolation, - ACTIONS(1900), 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(1898), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34750] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1112), 1, - sym_text_interpolation, - ACTIONS(1896), 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(1894), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34798] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1113), 1, - sym_text_interpolation, - ACTIONS(1888), 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(1886), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34846] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1114), 1, - sym_text_interpolation, - ACTIONS(1956), 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(1954), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34894] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1115), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2046), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [34978] = 16, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1116), 1, - sym_text_interpolation, - ACTIONS(1568), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 12, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [35048] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1117), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2096), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [35132] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1118), 1, - sym_text_interpolation, - ACTIONS(1880), 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(1878), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [35180] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1119), 1, - sym_text_interpolation, - ACTIONS(1856), 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(1854), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [35228] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_PERCENT, - STATE(1120), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2174), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [35294] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1121), 1, - sym_text_interpolation, - ACTIONS(1868), 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(1866), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [35342] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2180), 1, - anon_sym_STAR_STAR, - STATE(1122), 1, - sym_text_interpolation, - ACTIONS(1868), 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(1866), 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, - [35392] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1123), 1, - sym_text_interpolation, - ACTIONS(1872), 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(1870), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [35440] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1124), 1, - sym_text_interpolation, - ACTIONS(1629), 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(1627), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [35488] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1125), 1, - sym_text_interpolation, - ACTIONS(1844), 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(1842), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [35536] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1126), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 7, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [35615] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1127), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 20, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [35668] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1128), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2038), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [35751] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1129), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1992), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [35834] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1130), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2046), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [35917] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1131), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2032), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36000] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1132), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2034), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36083] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1133), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2036), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36166] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1134), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2052), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36249] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1135), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2054), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36332] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1136), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2060), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36415] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1137), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2074), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36498] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_QMARK, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1138), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2088), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [36575] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1139), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2094), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36658] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1140), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2056), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36741] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1141), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2058), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [36824] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1142), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2072), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [36901] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2070), 1, - anon_sym_QMARK, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1143), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2068), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [36978] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1144), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2040), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [37061] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1145), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2048), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [37138] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1146), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2050), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [37215] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1147), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 18, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT, - [37270] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1148), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2078), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [37353] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1149), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2042), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [37436] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1150), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 17, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [37493] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1151), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 12, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [37558] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1152), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1796), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [37641] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1153), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1568), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 16, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [37702] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1154), 1, - sym_text_interpolation, - ACTIONS(1568), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 12, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [37769] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_QMARK, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1155), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 11, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [37840] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1156), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2044), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [37923] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2222), 1, - anon_sym_STAR_STAR, - STATE(1157), 1, - sym_text_interpolation, - ACTIONS(1790), 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(1788), 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, - [37972] = 18, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1568), 1, - anon_sym_QMARK, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1158), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 10, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [38045] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2222), 1, - anon_sym_STAR_STAR, - STATE(1159), 1, - sym_text_interpolation, - ACTIONS(1794), 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(1792), 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, - [38094] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1160), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 6, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [38175] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1161), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2096), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [38258] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1162), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [38335] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1163), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1814), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [38418] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_QMARK, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1164), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2062), 8, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [38495] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1165), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2092), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [38578] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1166), 1, - sym_text_interpolation, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1568), 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(1566), 22, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [38629] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2222), 1, - anon_sym_STAR_STAR, - STATE(1167), 1, - sym_text_interpolation, - ACTIONS(1868), 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(1866), 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, - [38678] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1168), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2066), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [38761] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - ACTIONS(2224), 1, - anon_sym_EQ_GT, - STATE(1169), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1850), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [38846] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1170), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2084), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [38929] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1171), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2082), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [39012] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1172), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2080), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [39095] = 16, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - STATE(1173), 1, - sym_text_interpolation, - ACTIONS(1568), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1566), 11, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [39164] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - anon_sym_PERCENT, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1174), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2076), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [39247] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - ACTIONS(2226), 1, - anon_sym_COMMA, - ACTIONS(2228), 1, - anon_sym_EQ_GT, - STATE(1175), 1, - sym_text_interpolation, - STATE(1807), 1, - aux_sym_match_condition_list_repeat1, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39332] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - ACTIONS(2230), 1, - anon_sym_EQ_GT, - STATE(1176), 1, - sym_text_interpolation, - ACTIONS(1850), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39415] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1177), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2232), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39496] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - ACTIONS(2234), 1, - anon_sym_EQ_GT, - STATE(1178), 1, - sym_text_interpolation, - ACTIONS(1850), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39579] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - ACTIONS(2238), 1, - anon_sym_COMMA, - STATE(1179), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2236), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39662] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1180), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2240), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39743] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - ACTIONS(2238), 1, - anon_sym_COMMA, - STATE(1181), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2242), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39826] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1182), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2244), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39907] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2248), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2253), 1, - aux_sym_final_modifier_token1, - ACTIONS(2256), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2259), 1, - sym_var_modifier, - STATE(1297), 1, - sym__modifier, - ACTIONS(2251), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - STATE(1183), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(2262), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1293), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(2246), 16, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [39966] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - ACTIONS(2265), 1, - anon_sym_EQ_GT, - STATE(1184), 1, - sym_text_interpolation, - ACTIONS(1850), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40049] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - STATE(1185), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2267), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40129] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1186), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2269), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40209] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1187), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2271), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40289] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1188), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2273), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40369] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1189), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2275), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40449] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1190), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2277), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40529] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1191), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2279), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40609] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1192), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2281), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40689] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - STATE(1193), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2283), 2, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40769] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1734), 1, - anon_sym_QMARK, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(2285), 1, - anon_sym_DOT_DOT_DOT, - STATE(1194), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1571), 1, - sym__type, - STATE(1612), 1, - sym__types, - STATE(1960), 1, - sym_reference_modifier, - STATE(2010), 1, - sym_variable_name, - STATE(2364), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [40843] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - STATE(1195), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2287), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40923] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - STATE(1196), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2289), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41003] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, - anon_sym_RPAREN, - STATE(1197), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41085] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2295), 1, - anon_sym_RPAREN, - STATE(1198), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41167] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1199), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2297), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41247] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1200), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2299), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41327] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1201), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2301), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41407] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2303), 1, - anon_sym_RPAREN, - STATE(1202), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41489] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - ACTIONS(2236), 1, - anon_sym_SEMI, - ACTIONS(2305), 1, - anon_sym_COMMA, - STATE(1203), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41571] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1204), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2307), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41651] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1205), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2309), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41731] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - ACTIONS(2236), 1, - anon_sym_RPAREN, - ACTIONS(2311), 1, - anon_sym_COMMA, - STATE(1206), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41813] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1207), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2313), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41893] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2315), 1, - anon_sym_RPAREN, - STATE(1208), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41975] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1209), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2317), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42055] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - ACTIONS(2242), 1, - anon_sym_RPAREN, - ACTIONS(2311), 1, - anon_sym_COMMA, - STATE(1210), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42137] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1211), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2319), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42217] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1212), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2321), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42297] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1213), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2323), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42377] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1214), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2325), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42457] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1215), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2327), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42537] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - ACTIONS(2242), 1, - anon_sym_SEMI, - ACTIONS(2305), 1, - anon_sym_COMMA, - STATE(1216), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42619] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1217), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2329), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42699] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_AMP, - ACTIONS(2142), 1, - anon_sym_QMARK, - ACTIONS(2144), 1, - anon_sym_PIPE, - ACTIONS(2148), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2150), 1, - aux_sym_binary_expression_token2, - ACTIONS(2152), 1, - aux_sym_binary_expression_token3, - ACTIONS(2154), 1, - aux_sym_binary_expression_token4, - ACTIONS(2156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2158), 1, - anon_sym_AMP_AMP, - ACTIONS(2160), 1, - anon_sym_CARET, - ACTIONS(2168), 1, - anon_sym_GT_EQ, - ACTIONS(2172), 1, - anon_sym_DOT, - ACTIONS(2174), 1, - anon_sym_SLASH, - STATE(1218), 1, - sym_text_interpolation, - ACTIONS(2146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2331), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2166), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2164), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42779] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_AMP, - ACTIONS(2186), 1, - anon_sym_QMARK, - ACTIONS(2188), 1, - anon_sym_PIPE, - ACTIONS(2192), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2194), 1, - aux_sym_binary_expression_token2, - ACTIONS(2196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2198), 1, - anon_sym_AMP_AMP, - ACTIONS(2200), 1, - anon_sym_CARET, - ACTIONS(2208), 1, - anon_sym_GT_EQ, - ACTIONS(2212), 1, - anon_sym_DOT, - ACTIONS(2214), 1, - anon_sym_SLASH, - ACTIONS(2218), 1, - aux_sym_binary_expression_token3, - ACTIONS(2220), 1, - aux_sym_binary_expression_token4, - STATE(1219), 1, - sym_text_interpolation, - ACTIONS(2190), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2333), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2206), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2204), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42859] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2335), 1, - anon_sym_RBRACE, - STATE(1220), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [42938] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - ACTIONS(2337), 1, - anon_sym_RBRACK, - STATE(1221), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43017] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2339), 1, - anon_sym_RBRACE, - STATE(1222), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43096] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - ACTIONS(2341), 1, - anon_sym_RBRACK, - STATE(1223), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43175] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2343), 1, - anon_sym_RBRACE, - STATE(1224), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43254] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2345), 1, - anon_sym_RBRACE, - STATE(1225), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43333] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2347), 1, - anon_sym_RPAREN, - STATE(1226), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43412] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2349), 1, - anon_sym_EQ_GT, - STATE(1227), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43491] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2351), 1, - anon_sym_RPAREN, - STATE(1228), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43570] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2353), 1, - anon_sym_RBRACE, - STATE(1229), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43649] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2355), 1, - anon_sym_EQ_GT, - STATE(1230), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43728] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2357), 1, - anon_sym_RBRACE, - STATE(1231), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43807] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2359), 1, - anon_sym_RBRACE, - STATE(1232), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43886] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2361), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1233), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43965] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, - anon_sym_RBRACE, - STATE(1234), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44044] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, - anon_sym_RBRACK, - STATE(1235), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44123] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2365), 1, - anon_sym_RPAREN, - STATE(1236), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44202] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2367), 1, - anon_sym_RBRACE, - STATE(1237), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44281] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2369), 1, - anon_sym_RBRACE, - STATE(1238), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44360] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2371), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1239), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44439] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2373), 1, - anon_sym_COLON, - STATE(1240), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44518] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2375), 1, - anon_sym_RBRACE, - STATE(1241), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44597] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2377), 1, - anon_sym_RBRACE, - STATE(1242), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44676] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2379), 1, - anon_sym_RBRACE, - STATE(1243), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44755] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2381), 1, - anon_sym_EQ_GT, - STATE(1244), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44834] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2383), 1, - anon_sym_RBRACE, - STATE(1245), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44913] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2385), 1, - anon_sym_COLON, - STATE(1246), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44992] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2387), 1, - anon_sym_RBRACE, - STATE(1247), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45071] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2389), 1, - anon_sym_COLON, - STATE(1248), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45150] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2391), 1, - anon_sym_RBRACE, - STATE(1249), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45229] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2393), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1250), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45308] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2395), 1, - anon_sym_RPAREN, - STATE(1251), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45387] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2397), 1, - anon_sym_RBRACE, - STATE(1252), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45466] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2399), 1, - anon_sym_RBRACE, - STATE(1253), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45545] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2401), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45624] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2403), 1, - anon_sym_RBRACE, - STATE(1255), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45703] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_AMP, - ACTIONS(2100), 1, - anon_sym_QMARK, - ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2106), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2108), 1, - aux_sym_binary_expression_token2, - ACTIONS(2110), 1, - aux_sym_binary_expression_token3, - ACTIONS(2112), 1, - aux_sym_binary_expression_token4, - ACTIONS(2114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2116), 1, - anon_sym_AMP_AMP, - ACTIONS(2118), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_GT_EQ, - ACTIONS(2130), 1, - anon_sym_DOT, - ACTIONS(2132), 1, - anon_sym_SLASH, - ACTIONS(2405), 1, - anon_sym_RBRACK, - STATE(1256), 1, - sym_text_interpolation, - ACTIONS(2104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2120), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2128), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2134), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2124), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2122), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45782] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2407), 1, - anon_sym_RBRACE, - STATE(1257), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45861] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2405), 1, - anon_sym_RBRACE, - STATE(1258), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45940] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2409), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1259), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46019] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2411), 1, - anon_sym_COLON, - STATE(1260), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46098] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2413), 1, - anon_sym_RBRACE, - STATE(1261), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46177] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2415), 1, - anon_sym_RBRACE, - STATE(1262), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46256] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2341), 1, - anon_sym_RBRACE, - STATE(1263), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46335] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2417), 1, - anon_sym_RBRACE, - STATE(1264), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46414] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2419), 1, - anon_sym_RBRACE, - STATE(1265), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46493] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2421), 1, - anon_sym_RBRACE, - STATE(1266), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46572] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2423), 1, - anon_sym_RBRACE, - STATE(1267), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46651] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1994), 1, - anon_sym_AMP, - ACTIONS(1996), 1, - anon_sym_QMARK, - ACTIONS(1998), 1, - anon_sym_PIPE, - ACTIONS(2002), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2004), 1, - aux_sym_binary_expression_token2, - ACTIONS(2006), 1, - aux_sym_binary_expression_token3, - ACTIONS(2008), 1, - aux_sym_binary_expression_token4, - ACTIONS(2010), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2012), 1, - anon_sym_AMP_AMP, - ACTIONS(2014), 1, - anon_sym_CARET, - ACTIONS(2022), 1, - anon_sym_GT_EQ, - ACTIONS(2026), 1, - anon_sym_DOT, - ACTIONS(2028), 1, - anon_sym_SLASH, - ACTIONS(2337), 1, - anon_sym_RBRACE, - STATE(1268), 1, - sym_text_interpolation, - ACTIONS(2000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2024), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2030), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2018), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [46730] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2425), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2431), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2433), 1, - anon_sym_RBRACE, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2439), 1, - sym_var_modifier, - STATE(748), 1, - aux_sym_property_declaration_repeat1, - STATE(1269), 1, - sym_text_interpolation, - STATE(1274), 1, - sym_final_modifier, - STATE(1278), 1, - aux_sym_declaration_list_repeat1, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1297), 1, - sym__modifier, - STATE(1310), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1346), 1, - sym__class_const_declaration, - STATE(1357), 1, - sym__member_declaration, - STATE(1362), 1, - sym__const_declaration, - STATE(1721), 1, - sym__function_definition_header, - STATE(1293), 2, - sym_abstract_modifier, - sym_static_modifier, - ACTIONS(2441), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1365), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [46814] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2425), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2431), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2439), 1, - sym_var_modifier, - ACTIONS(2443), 1, - anon_sym_RBRACE, - STATE(748), 1, - aux_sym_property_declaration_repeat1, - STATE(1270), 1, - sym_text_interpolation, - STATE(1274), 1, - sym_final_modifier, - STATE(1279), 1, - aux_sym_declaration_list_repeat1, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1297), 1, - sym__modifier, - STATE(1310), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1346), 1, - sym__class_const_declaration, - STATE(1357), 1, - sym__member_declaration, - STATE(1362), 1, - sym__const_declaration, - STATE(1721), 1, - sym__function_definition_header, - STATE(1293), 2, - sym_abstract_modifier, - sym_static_modifier, - ACTIONS(2441), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1365), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [46898] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2425), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2431), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2439), 1, - sym_var_modifier, - ACTIONS(2445), 1, - anon_sym_RBRACE, - STATE(748), 1, - aux_sym_property_declaration_repeat1, - STATE(1271), 1, - sym_text_interpolation, - STATE(1274), 1, - sym_final_modifier, - STATE(1278), 1, - aux_sym_declaration_list_repeat1, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1297), 1, - sym__modifier, - STATE(1310), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1346), 1, - sym__class_const_declaration, - STATE(1357), 1, - sym__member_declaration, - STATE(1362), 1, - sym__const_declaration, - STATE(1721), 1, - sym__function_definition_header, - STATE(1293), 2, - sym_abstract_modifier, - sym_static_modifier, - ACTIONS(2441), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1365), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [46982] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2425), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2431), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2439), 1, - sym_var_modifier, - ACTIONS(2447), 1, - anon_sym_RBRACE, - STATE(748), 1, - aux_sym_property_declaration_repeat1, - STATE(1272), 1, - sym_text_interpolation, - STATE(1274), 1, - sym_final_modifier, - STATE(1278), 1, - aux_sym_declaration_list_repeat1, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1297), 1, - sym__modifier, - STATE(1310), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1346), 1, - sym__class_const_declaration, - STATE(1357), 1, - sym__member_declaration, - STATE(1362), 1, - sym__const_declaration, - STATE(1721), 1, - sym__function_definition_header, - STATE(1293), 2, - sym_abstract_modifier, - sym_static_modifier, - ACTIONS(2441), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1365), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [47066] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2425), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2431), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2439), 1, - sym_var_modifier, - ACTIONS(2449), 1, - anon_sym_RBRACE, - STATE(748), 1, - aux_sym_property_declaration_repeat1, - STATE(1272), 1, - aux_sym_declaration_list_repeat1, - STATE(1273), 1, - sym_text_interpolation, - STATE(1274), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1297), 1, - sym__modifier, - STATE(1310), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1346), 1, - sym__class_const_declaration, - STATE(1357), 1, - sym__member_declaration, - STATE(1362), 1, - sym__const_declaration, - STATE(1721), 1, - sym__function_definition_header, - STATE(1293), 2, - sym_abstract_modifier, - sym_static_modifier, - ACTIONS(2441), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1365), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [47150] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2453), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1274), 1, - sym_text_interpolation, - STATE(1358), 1, - sym__const_declaration, - STATE(2463), 1, - sym_visibility_modifier, - ACTIONS(2455), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2451), 23, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_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_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [47198] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2453), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1275), 1, - sym_text_interpolation, - STATE(1363), 1, - sym__const_declaration, - STATE(2463), 1, - sym_visibility_modifier, - ACTIONS(2455), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2451), 23, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_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_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [47246] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2425), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2431), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2439), 1, - sym_var_modifier, - ACTIONS(2457), 1, - anon_sym_RBRACE, - STATE(748), 1, - aux_sym_property_declaration_repeat1, - STATE(1271), 1, - aux_sym_declaration_list_repeat1, - STATE(1274), 1, - sym_final_modifier, - STATE(1276), 1, - sym_text_interpolation, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1297), 1, - sym__modifier, - STATE(1310), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1346), 1, - sym__class_const_declaration, - STATE(1357), 1, - sym__member_declaration, - STATE(1362), 1, - sym__const_declaration, - STATE(1721), 1, - sym__function_definition_header, - STATE(1293), 2, - sym_abstract_modifier, - sym_static_modifier, - ACTIONS(2441), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1365), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [47330] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2425), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2431), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2439), 1, - sym_var_modifier, - ACTIONS(2459), 1, - anon_sym_RBRACE, - STATE(748), 1, - aux_sym_property_declaration_repeat1, - STATE(1269), 1, - aux_sym_declaration_list_repeat1, - STATE(1274), 1, - sym_final_modifier, - STATE(1277), 1, - sym_text_interpolation, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1297), 1, - sym__modifier, - STATE(1310), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1346), 1, - sym__class_const_declaration, - STATE(1357), 1, - sym__member_declaration, - STATE(1362), 1, - sym__const_declaration, - STATE(1721), 1, - sym__function_definition_header, - STATE(1293), 2, - sym_abstract_modifier, - sym_static_modifier, - ACTIONS(2441), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1365), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [47414] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2461), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2464), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2467), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2470), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2473), 1, - anon_sym_RBRACE, - ACTIONS(2475), 1, - aux_sym_final_modifier_token1, - ACTIONS(2478), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2481), 1, - sym_var_modifier, - ACTIONS(2487), 1, - anon_sym_POUND_LBRACK, - STATE(748), 1, - aux_sym_property_declaration_repeat1, - STATE(1274), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1297), 1, - sym__modifier, - STATE(1310), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1346), 1, - sym__class_const_declaration, - STATE(1357), 1, - sym__member_declaration, - STATE(1362), 1, - sym__const_declaration, - STATE(1721), 1, - sym__function_definition_header, - STATE(1278), 2, - sym_text_interpolation, - aux_sym_declaration_list_repeat1, - STATE(1293), 2, - sym_abstract_modifier, - sym_static_modifier, - ACTIONS(2484), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1365), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [47496] = 26, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2425), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2431), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2439), 1, - sym_var_modifier, - ACTIONS(2490), 1, - anon_sym_RBRACE, - STATE(748), 1, - aux_sym_property_declaration_repeat1, - STATE(1274), 1, - sym_final_modifier, - STATE(1278), 1, - aux_sym_declaration_list_repeat1, - STATE(1279), 1, - sym_text_interpolation, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1297), 1, - sym__modifier, - STATE(1310), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1346), 1, - sym__class_const_declaration, - STATE(1357), 1, - sym__member_declaration, - STATE(1362), 1, - sym__const_declaration, - STATE(1721), 1, - sym__function_definition_header, - STATE(1293), 2, - sym_abstract_modifier, - sym_static_modifier, - ACTIONS(2441), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1365), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [47580] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1710), 1, - anon_sym_QMARK, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(1280), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1553), 1, - sym__types, - STATE(1952), 1, - sym_variable_name, - STATE(2112), 1, - sym__type, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [47645] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1281), 1, - sym_text_interpolation, - ACTIONS(2494), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2492), 25, - 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_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_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_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [47686] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2496), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2498), 1, - anon_sym_RBRACE, - ACTIONS(2500), 1, - aux_sym_enum_case_token1, - ACTIONS(2502), 1, - aux_sym_final_modifier_token1, - ACTIONS(2504), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2506), 1, - sym_var_modifier, - STATE(1282), 1, - sym_text_interpolation, - STATE(1289), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1311), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1316), 1, - aux_sym_property_declaration_repeat1, - STATE(1347), 1, - sym__enum_member_declaration, - STATE(1435), 1, - sym__modifier, - STATE(1721), 1, - sym__function_definition_header, - ACTIONS(2508), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1353), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1434), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - [47760] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2496), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2500), 1, - aux_sym_enum_case_token1, - ACTIONS(2502), 1, - aux_sym_final_modifier_token1, - ACTIONS(2504), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2506), 1, - sym_var_modifier, - ACTIONS(2510), 1, - anon_sym_RBRACE, - STATE(1283), 1, - sym_text_interpolation, - STATE(1286), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1311), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1316), 1, - aux_sym_property_declaration_repeat1, - STATE(1347), 1, - sym__enum_member_declaration, - STATE(1435), 1, - sym__modifier, - STATE(1721), 1, - sym__function_definition_header, - ACTIONS(2508), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1353), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1434), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - [47834] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1284), 1, - sym_text_interpolation, - ACTIONS(2514), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2512), 24, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_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_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [47874] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2516), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1285), 1, - sym_text_interpolation, - ACTIONS(2455), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2451), 23, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_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_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [47916] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2496), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2500), 1, - aux_sym_enum_case_token1, - ACTIONS(2502), 1, - aux_sym_final_modifier_token1, - ACTIONS(2504), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2506), 1, - sym_var_modifier, - ACTIONS(2518), 1, - anon_sym_RBRACE, - STATE(1286), 1, - sym_text_interpolation, - STATE(1287), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1311), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1316), 1, - aux_sym_property_declaration_repeat1, - STATE(1347), 1, - sym__enum_member_declaration, - STATE(1435), 1, - sym__modifier, - STATE(1721), 1, - sym__function_definition_header, - ACTIONS(2508), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1353), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1434), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - [47990] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2520), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2523), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2529), 1, - anon_sym_RBRACE, - ACTIONS(2531), 1, - aux_sym_enum_case_token1, - ACTIONS(2534), 1, - aux_sym_final_modifier_token1, - ACTIONS(2537), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2540), 1, - sym_var_modifier, - ACTIONS(2546), 1, - anon_sym_POUND_LBRACK, - STATE(1311), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1316), 1, - aux_sym_property_declaration_repeat1, - STATE(1347), 1, - sym__enum_member_declaration, - STATE(1435), 1, - sym__modifier, - STATE(1721), 1, - sym__function_definition_header, - STATE(1287), 2, - sym_text_interpolation, - aux_sym_enum_declaration_list_repeat1, - ACTIONS(2543), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1353), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1434), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - [48062] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1288), 1, - sym_text_interpolation, - ACTIONS(2551), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2549), 24, - 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_final_modifier_token1, - aux_sym_abstract_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_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [48102] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2427), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2496), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2500), 1, - aux_sym_enum_case_token1, - ACTIONS(2502), 1, - aux_sym_final_modifier_token1, - ACTIONS(2504), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2506), 1, - sym_var_modifier, - ACTIONS(2553), 1, - anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1289), 1, - sym_text_interpolation, - STATE(1311), 1, - sym_attribute_list, - STATE(1314), 1, - aux_sym_attribute_list_repeat2, - STATE(1316), 1, - aux_sym_property_declaration_repeat1, - STATE(1347), 1, - sym__enum_member_declaration, - STATE(1435), 1, - sym__modifier, - STATE(1721), 1, - sym__function_definition_header, - ACTIONS(2508), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1353), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1434), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - [48176] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1710), 1, - anon_sym_QMARK, - STATE(1290), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1553), 1, - sym__types, - STATE(2087), 1, - sym__type, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [48235] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1710), 1, - anon_sym_QMARK, - STATE(1291), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1553), 1, - sym__types, - STATE(1734), 1, - sym__type, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [48294] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2555), 1, - sym_name, - ACTIONS(2557), 1, - anon_sym_QMARK, - STATE(1292), 1, - sym_text_interpolation, - STATE(1615), 1, - sym__types, - STATE(1683), 1, - sym_qualified_name, - STATE(1905), 1, - sym_union_type, - STATE(1934), 1, - sym__type, - STATE(2400), 1, - sym_namespace_name, - STATE(2401), 1, - sym_namespace_name_as_prefix, - STATE(1684), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(2559), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [48353] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1293), 1, - sym_text_interpolation, - ACTIONS(2455), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2451), 23, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_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_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [48392] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1294), 1, - sym_text_interpolation, - ACTIONS(2563), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2561), 23, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_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_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [48431] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1710), 1, - anon_sym_QMARK, - STATE(1295), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1553), 1, - sym__types, - STATE(1643), 1, - sym__type, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [48490] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1710), 1, - anon_sym_QMARK, - STATE(1296), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1553), 1, - sym__types, - STATE(1768), 1, - sym__type, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [48549] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1297), 1, - sym_text_interpolation, - ACTIONS(2567), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2565), 23, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_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_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [48588] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1710), 1, - anon_sym_QMARK, - STATE(1298), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(1531), 1, - sym_union_type, - STATE(1553), 1, - sym__types, - STATE(1748), 1, - sym__type, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [48647] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1734), 1, - anon_sym_QMARK, - STATE(1299), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(1455), 1, - sym__types, - STATE(2364), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [48700] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2555), 1, - sym_name, - ACTIONS(2557), 1, - anon_sym_QMARK, - STATE(1300), 1, - sym_text_interpolation, - STATE(1683), 1, - sym_qualified_name, - STATE(1754), 1, - sym__types, - STATE(2400), 1, - sym_namespace_name, - STATE(2401), 1, - sym_namespace_name_as_prefix, - STATE(1684), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(2559), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [48753] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - ACTIONS(1710), 1, - anon_sym_QMARK, - STATE(1301), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(1455), 1, - sym__types, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1476), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [48806] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2573), 1, - anon_sym_POUND_LBRACK, - STATE(1302), 2, - sym_text_interpolation, - aux_sym_attribute_list_repeat2, - ACTIONS(2571), 4, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(2569), 15, - aux_sym_namespace_definition_token1, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [48843] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1736), 1, - anon_sym_POUND_LBRACK, - STATE(1302), 1, - aux_sym_attribute_list_repeat2, - STATE(1303), 1, - sym_text_interpolation, - ACTIONS(2578), 4, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(2576), 15, - aux_sym_namespace_definition_token1, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [48882] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2555), 1, - sym_name, - STATE(1304), 1, - sym_text_interpolation, - STATE(1683), 1, - sym_qualified_name, - STATE(2400), 1, - sym_namespace_name, - STATE(2401), 1, - sym_namespace_name_as_prefix, - STATE(1775), 2, - sym_named_type, - sym_primitive_type, - ACTIONS(2559), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [48928] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1305), 1, - sym_text_interpolation, - ACTIONS(2582), 5, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2580), 15, - aux_sym_namespace_definition_token1, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [48962] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1306), 1, - sym_text_interpolation, - ACTIONS(2586), 5, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2584), 15, - aux_sym_namespace_definition_token1, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [48996] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - STATE(1307), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(2364), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1487), 2, - sym_named_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [49042] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - STATE(1308), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1487), 2, - sym_named_type, - sym_primitive_type, - ACTIONS(1712), 12, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - [49088] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1309), 1, - sym_text_interpolation, - ACTIONS(2551), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2549), 16, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_string, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - sym_name, - [49120] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2425), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2431), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2439), 1, - sym_var_modifier, - STATE(747), 1, - aux_sym_property_declaration_repeat1, - STATE(1275), 1, - sym_final_modifier, - STATE(1285), 1, - sym_visibility_modifier, - STATE(1297), 1, - sym__modifier, - STATE(1310), 1, - sym_text_interpolation, - STATE(1352), 1, - sym__const_declaration, - STATE(1637), 1, - sym__function_definition_header, - STATE(1293), 2, - sym_abstract_modifier, - sym_static_modifier, - ACTIONS(2441), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [49175] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2496), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2502), 1, - aux_sym_final_modifier_token1, - ACTIONS(2504), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2506), 1, - sym_var_modifier, - ACTIONS(2588), 1, - aux_sym_enum_case_token1, - STATE(1311), 1, - sym_text_interpolation, - STATE(1315), 1, - aux_sym_property_declaration_repeat1, - STATE(1435), 1, - sym__modifier, - STATE(1637), 1, - sym__function_definition_header, - ACTIONS(2508), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1434), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - [49223] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1312), 1, - sym_text_interpolation, - ACTIONS(2590), 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(1659), 10, - sym_heredoc, - anon_sym_BSLASH, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_string_token1, - anon_sym_DOLLAR, - [49253] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2592), 1, - anon_sym_POUND_LBRACK, - STATE(1313), 2, - sym_text_interpolation, - aux_sym_attribute_list_repeat2, - ACTIONS(2571), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym_arrow_function_token1, - [49282] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_POUND_LBRACK, - STATE(1313), 1, - aux_sym_attribute_list_repeat2, - STATE(1314), 1, - sym_text_interpolation, - ACTIONS(2578), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym_arrow_function_token1, - [49313] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2496), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2502), 1, - aux_sym_final_modifier_token1, - ACTIONS(2504), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2506), 1, - sym_var_modifier, - STATE(1315), 1, - sym_text_interpolation, - STATE(1323), 1, - aux_sym_property_declaration_repeat1, - STATE(1435), 1, - sym__modifier, - STATE(1694), 1, - sym__function_definition_header, - ACTIONS(2508), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1434), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - [49358] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2429), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2496), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2502), 1, - aux_sym_final_modifier_token1, - ACTIONS(2504), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2506), 1, - sym_var_modifier, - STATE(1316), 1, - sym_text_interpolation, - STATE(1323), 1, - aux_sym_property_declaration_repeat1, - STATE(1435), 1, - sym__modifier, - STATE(1660), 1, - sym__function_definition_header, - ACTIONS(2508), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1434), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - [49403] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2595), 1, - anon_sym_LBRACE, - ACTIONS(2598), 1, - sym_escape_sequence, - ACTIONS(2601), 1, - anon_sym_DQUOTE, - ACTIONS(2603), 1, - anon_sym_BSLASHu, - ACTIONS(2609), 1, - anon_sym_DOLLAR, - STATE(1383), 1, - sym_variable_name, - STATE(1481), 1, - sym__simple_string_member_access_expression, - ACTIONS(2606), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1317), 2, - sym_text_interpolation, - aux_sym_encapsed_string_repeat1, - STATE(1480), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1484), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [49447] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1318), 1, - sym_text_interpolation, - ACTIONS(2582), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym_arrow_function_token1, - anon_sym_POUND_LBRACK, - [49473] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2612), 1, - anon_sym_LBRACE, - ACTIONS(2614), 1, - sym_escape_sequence, - ACTIONS(2616), 1, - anon_sym_DQUOTE, - ACTIONS(2618), 1, - anon_sym_BSLASHu, - ACTIONS(2622), 1, - anon_sym_DOLLAR, - STATE(1319), 1, - sym_text_interpolation, - STATE(1320), 1, - aux_sym_encapsed_string_repeat1, - STATE(1383), 1, - sym_variable_name, - STATE(1481), 1, - sym__simple_string_member_access_expression, - ACTIONS(2620), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1480), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1484), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [49519] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2612), 1, - anon_sym_LBRACE, - ACTIONS(2614), 1, - sym_escape_sequence, - ACTIONS(2618), 1, - anon_sym_BSLASHu, - ACTIONS(2622), 1, - anon_sym_DOLLAR, - ACTIONS(2624), 1, - anon_sym_DQUOTE, - STATE(1317), 1, - aux_sym_encapsed_string_repeat1, - STATE(1320), 1, - sym_text_interpolation, - STATE(1383), 1, - sym_variable_name, - STATE(1481), 1, - sym__simple_string_member_access_expression, - ACTIONS(2620), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1480), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1484), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [49565] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2612), 1, - anon_sym_LBRACE, - ACTIONS(2614), 1, - sym_escape_sequence, - ACTIONS(2618), 1, - anon_sym_BSLASHu, - ACTIONS(2622), 1, - anon_sym_DOLLAR, - ACTIONS(2626), 1, - anon_sym_DQUOTE, - STATE(1317), 1, - aux_sym_encapsed_string_repeat1, - STATE(1321), 1, - sym_text_interpolation, - STATE(1383), 1, - sym_variable_name, - STATE(1481), 1, - sym__simple_string_member_access_expression, - ACTIONS(2620), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1480), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1484), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [49611] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2612), 1, - anon_sym_LBRACE, - ACTIONS(2614), 1, - sym_escape_sequence, - ACTIONS(2618), 1, - anon_sym_BSLASHu, - ACTIONS(2622), 1, - anon_sym_DOLLAR, - ACTIONS(2628), 1, - anon_sym_DQUOTE, - STATE(1321), 1, - aux_sym_encapsed_string_repeat1, - STATE(1322), 1, - sym_text_interpolation, - STATE(1383), 1, - sym_variable_name, - STATE(1481), 1, - sym__simple_string_member_access_expression, - ACTIONS(2620), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1480), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1484), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [49657] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2251), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2630), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2633), 1, - aux_sym_final_modifier_token1, - ACTIONS(2636), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2639), 1, - sym_var_modifier, - STATE(1435), 1, - sym__modifier, - STATE(1323), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(2642), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1434), 4, - sym_final_modifier, - sym_abstract_modifier, - sym_static_modifier, - sym_visibility_modifier, - [49697] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1324), 1, - sym_text_interpolation, - ACTIONS(2586), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym_arrow_function_token1, - anon_sym_POUND_LBRACK, - [49723] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1325), 1, - sym_text_interpolation, - ACTIONS(2645), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [49748] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1326), 1, - sym_text_interpolation, - ACTIONS(2647), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [49773] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1327), 1, - sym_text_interpolation, - ACTIONS(2649), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [49798] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1328), 1, - sym_text_interpolation, - ACTIONS(2649), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [49823] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1329), 1, - sym_text_interpolation, - ACTIONS(2651), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [49848] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2653), 1, - sym_name, - ACTIONS(2659), 1, - anon_sym_BSLASH, - STATE(1330), 1, - sym_text_interpolation, - STATE(1669), 1, - sym_namespace_use_clause, - STATE(2401), 1, - sym_namespace_name_as_prefix, - STATE(2414), 1, - sym_namespace_name, - ACTIONS(2657), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - STATE(1625), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [49889] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1331), 1, - sym_text_interpolation, - ACTIONS(2661), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [49914] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1332), 1, - sym_text_interpolation, - ACTIONS(2663), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [49939] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1333), 1, - sym_text_interpolation, - ACTIONS(2665), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [49964] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1334), 1, - sym_text_interpolation, - ACTIONS(2663), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [49989] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1335), 1, - sym_text_interpolation, - ACTIONS(2667), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50014] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1336), 1, - sym_text_interpolation, - ACTIONS(2669), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50039] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1337), 1, - sym_text_interpolation, - ACTIONS(2671), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50064] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2653), 1, - sym_name, - ACTIONS(2675), 1, - anon_sym_BSLASH, - STATE(1338), 1, - sym_text_interpolation, - STATE(1770), 1, - sym_namespace_use_clause, - STATE(2312), 1, - sym_namespace_name, - STATE(2401), 1, - sym_namespace_name_as_prefix, - ACTIONS(2673), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - STATE(1625), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [50105] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1339), 1, - sym_text_interpolation, - ACTIONS(966), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50130] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1340), 1, - sym_text_interpolation, - ACTIONS(2671), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50155] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1341), 1, - sym_text_interpolation, - ACTIONS(950), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50180] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1342), 1, - sym_text_interpolation, - ACTIONS(2677), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50205] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1343), 1, - sym_text_interpolation, - ACTIONS(2679), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50230] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1344), 1, - sym_text_interpolation, - ACTIONS(2669), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50255] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1345), 1, - sym_text_interpolation, - ACTIONS(2681), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50279] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1346), 1, - sym_text_interpolation, - ACTIONS(2683), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50303] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1347), 1, - sym_text_interpolation, - ACTIONS(2685), 12, - 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, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50327] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1348), 1, - sym_text_interpolation, - ACTIONS(2687), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50351] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1349), 1, - sym_text_interpolation, - ACTIONS(2689), 12, - 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, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50375] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1350), 1, - sym_text_interpolation, - ACTIONS(2691), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50399] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1351), 1, - sym_text_interpolation, - ACTIONS(2693), 12, - 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, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50423] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1352), 1, - sym_text_interpolation, - ACTIONS(2695), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50447] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1353), 1, - sym_text_interpolation, - ACTIONS(2697), 12, - 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, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50471] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1354), 1, - sym_text_interpolation, - ACTIONS(2699), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50495] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1355), 1, - sym_text_interpolation, - ACTIONS(1257), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50519] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1356), 1, - sym_text_interpolation, - ACTIONS(1169), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50543] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1357), 1, - sym_text_interpolation, - ACTIONS(2701), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50567] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1358), 1, - sym_text_interpolation, - ACTIONS(2703), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50591] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(606), 1, - sym_heredoc, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2707), 1, - sym_integer, - STATE(1359), 1, - sym_text_interpolation, - STATE(2351), 1, - sym__string, - ACTIONS(588), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(590), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - STATE(716), 2, - sym_encapsed_string, - sym_string, - ACTIONS(2705), 3, - sym_float, - sym_boolean, - sym_null, - [50627] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1360), 1, - sym_text_interpolation, - ACTIONS(2709), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50651] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1361), 1, - sym_text_interpolation, - ACTIONS(1301), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50675] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1362), 1, - sym_text_interpolation, - ACTIONS(2711), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50699] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1363), 1, - sym_text_interpolation, - ACTIONS(2713), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50723] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1364), 1, - sym_text_interpolation, - ACTIONS(2715), 12, - 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, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50747] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1365), 1, - sym_text_interpolation, - ACTIONS(2717), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50771] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1366), 1, - sym_text_interpolation, - ACTIONS(2719), 12, - 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, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50795] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1367), 1, - sym_text_interpolation, - ACTIONS(2721), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50819] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1368), 1, - sym_text_interpolation, - ACTIONS(2723), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50843] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1369), 1, - sym_text_interpolation, - ACTIONS(2725), 12, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [50867] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2727), 1, - sym_name, - STATE(1370), 1, - sym_text_interpolation, - STATE(2193), 1, - sym_attribute, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1675), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [50904] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(2731), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2733), 1, - aux_sym_use_instead_of_clause_token1, - STATE(600), 1, - sym_arguments, - STATE(1371), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [50939] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2727), 1, - sym_name, - STATE(1372), 1, - sym_text_interpolation, - STATE(1895), 1, - sym_attribute, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1675), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [50976] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2653), 1, - sym_name, - STATE(1373), 1, - sym_text_interpolation, - STATE(1943), 1, - sym_namespace_use_clause, - STATE(2400), 1, - sym_namespace_name, - STATE(2401), 1, - sym_namespace_name_as_prefix, - STATE(1625), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51013] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1613), 1, - anon_sym_COLON_COLON, - ACTIONS(1714), 1, - anon_sym_DOLLAR, - ACTIONS(2563), 1, - aux_sym_arrow_function_token1, - ACTIONS(2735), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1374), 1, - sym_text_interpolation, - STATE(1666), 1, - sym_static_variable_declaration, - STATE(1686), 1, - sym_variable_name, - ACTIONS(1501), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51048] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2653), 1, - sym_name, - ACTIONS(2737), 1, - anon_sym_BSLASH, - STATE(1375), 1, - sym_text_interpolation, - STATE(1767), 1, - sym_namespace_use_clause, - STATE(2401), 1, - sym_namespace_name_as_prefix, - STATE(2442), 1, - sym_namespace_name, - STATE(1625), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51085] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2727), 1, - sym_name, - STATE(1376), 1, - sym_text_interpolation, - STATE(1904), 1, - sym_attribute, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1675), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51122] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2739), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2741), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2743), 1, - aux_sym_enum_declaration_token1, - ACTIONS(2745), 1, - aux_sym_class_declaration_token1, - ACTIONS(2747), 1, - aux_sym_arrow_function_token1, - STATE(1377), 1, - sym_text_interpolation, - STATE(2127), 1, - sym__function_definition_header, - STATE(2431), 1, - sym_static_modifier, - STATE(2424), 2, - sym_final_modifier, - sym_abstract_modifier, - [51163] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2653), 1, - sym_name, - ACTIONS(2749), 1, - anon_sym_BSLASH, - STATE(1378), 1, - sym_text_interpolation, - STATE(1715), 1, - sym_namespace_use_clause, - STATE(2401), 1, - sym_namespace_name_as_prefix, - STATE(2422), 1, - sym_namespace_name, - STATE(1625), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51200] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1613), 1, - anon_sym_COLON_COLON, - ACTIONS(1714), 1, - anon_sym_DOLLAR, - ACTIONS(2563), 1, - aux_sym_arrow_function_token1, - ACTIONS(2735), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1379), 1, - sym_text_interpolation, - STATE(1686), 1, - sym_variable_name, - STATE(1695), 1, - sym_static_variable_declaration, - ACTIONS(1501), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51235] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2435), 1, - aux_sym_final_modifier_token1, - ACTIONS(2437), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2739), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2741), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2747), 1, - aux_sym_arrow_function_token1, - ACTIONS(2751), 1, - aux_sym_enum_declaration_token1, - ACTIONS(2753), 1, - aux_sym_class_declaration_token1, - STATE(1380), 1, - sym_text_interpolation, - STATE(2195), 1, - sym__function_definition_header, - STATE(2431), 1, - sym_static_modifier, - STATE(2420), 2, - sym_final_modifier, - sym_abstract_modifier, - [51276] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(1381), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2755), 8, - anon_sym_AMP, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [51302] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2757), 1, - sym_name, - STATE(1382), 1, - sym_text_interpolation, - STATE(2400), 1, - sym_namespace_name, - STATE(2401), 1, - sym_namespace_name_as_prefix, - STATE(1712), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51336] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2761), 1, - anon_sym_DASH_GT, - ACTIONS(2763), 1, - anon_sym_LBRACK, - ACTIONS(2765), 1, - anon_sym_BSLASHu, - ACTIONS(2767), 1, - sym_encapsed_string_chars_after_variable, - STATE(1383), 1, - sym_text_interpolation, - ACTIONS(2759), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [51366] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1479), 1, - anon_sym_BSLASHu, - STATE(1384), 1, - sym_text_interpolation, - ACTIONS(1477), 9, - 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_SQUOTE, - anon_sym_DOLLAR, - [51390] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2769), 1, - sym_name, - STATE(1385), 1, - sym_text_interpolation, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1737), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51424] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2771), 1, - sym_name, - STATE(1386), 1, - sym_text_interpolation, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1990), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51458] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2773), 1, - sym_name, - STATE(1387), 1, - sym_text_interpolation, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - STATE(1797), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51492] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2775), 1, - sym_name, - STATE(1388), 1, - sym_text_interpolation, - STATE(2400), 1, - sym_namespace_name, - STATE(2401), 1, - sym_namespace_name_as_prefix, - STATE(1495), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51526] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(2777), 1, - anon_sym_COMMA, - ACTIONS(2779), 1, - anon_sym_RPAREN, - STATE(600), 1, - sym_arguments, - STATE(1389), 1, - sym_text_interpolation, - STATE(1959), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51558] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(2777), 1, - anon_sym_COMMA, - ACTIONS(2781), 1, - anon_sym_RPAREN, - STATE(600), 1, - sym_arguments, - STATE(1390), 1, - sym_text_interpolation, - STATE(1980), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51590] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(2783), 1, - anon_sym_RPAREN, - STATE(600), 1, - sym_arguments, - STATE(1391), 1, - sym_text_interpolation, - STATE(1815), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51622] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(1392), 1, - sym_text_interpolation, - ACTIONS(1578), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51650] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(2785), 1, - sym_name, - ACTIONS(2787), 1, - anon_sym_LBRACE, - STATE(1393), 1, - sym_text_interpolation, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(788), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [51679] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(1394), 1, - sym_text_interpolation, - ACTIONS(2789), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51706] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(631), 1, - sym_arguments, - STATE(1395), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51735] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(2791), 1, - sym_name, - ACTIONS(2793), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym__reserved_identifier, - STATE(1396), 1, - sym_text_interpolation, - STATE(682), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51766] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(299), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2795), 1, - sym_name, - ACTIONS(2797), 1, - anon_sym_LBRACE, - STATE(1397), 1, - sym_text_interpolation, - STATE(1467), 1, - sym__reserved_identifier, - STATE(622), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51797] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(1398), 1, - sym_text_interpolation, - ACTIONS(2799), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51824] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(2791), 1, - sym_name, - ACTIONS(2793), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym__reserved_identifier, - STATE(1399), 1, - sym_text_interpolation, - STATE(764), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [51855] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(725), 1, - sym_arguments, - STATE(1400), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51884] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(2801), 1, - sym_name, - ACTIONS(2803), 1, - anon_sym_LBRACE, - STATE(1401), 1, - sym_text_interpolation, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(685), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [51913] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(600), 1, - sym_arguments, - STATE(1402), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [51942] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(2805), 1, - sym_name, - ACTIONS(2807), 1, - anon_sym_LBRACE, - STATE(1403), 1, - sym_text_interpolation, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(684), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [51971] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(2809), 1, - sym_name, - ACTIONS(2811), 1, - anon_sym_LBRACE, - STATE(1404), 1, - sym_text_interpolation, - STATE(1474), 1, - sym__reserved_identifier, - STATE(692), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52002] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(2813), 1, - sym_name, - ACTIONS(2815), 1, - anon_sym_LBRACE, - STATE(1405), 1, - sym_text_interpolation, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(683), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52031] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2817), 1, - sym_name, - ACTIONS(2819), 1, - anon_sym_LBRACE, - STATE(1406), 1, - sym_text_interpolation, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(597), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52060] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2821), 1, - sym_name, - ACTIONS(2823), 1, - anon_sym_LBRACE, - STATE(1407), 1, - sym_text_interpolation, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(598), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52089] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(2825), 1, - sym_name, - ACTIONS(2827), 1, - anon_sym_LBRACE, - STATE(1408), 1, - sym_text_interpolation, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(681), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52118] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(2829), 1, - sym_name, - ACTIONS(2831), 1, - anon_sym_LBRACE, - STATE(1409), 1, - sym_text_interpolation, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(786), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52147] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2833), 1, - sym_name, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1410), 1, - sym_text_interpolation, - STATE(1479), 1, - sym_reference_modifier, - STATE(1508), 1, - sym_formal_parameters, - STATE(2287), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52180] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2821), 1, - sym_name, - ACTIONS(2823), 1, - anon_sym_LBRACE, - STATE(1411), 1, - sym_text_interpolation, - ACTIONS(2837), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(598), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52209] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2817), 1, - sym_name, - ACTIONS(2819), 1, - anon_sym_LBRACE, - STATE(1412), 1, - sym_text_interpolation, - ACTIONS(2837), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(597), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52238] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(2839), 1, - sym_name, - ACTIONS(2841), 1, - anon_sym_LBRACE, - STATE(1413), 1, - sym_text_interpolation, - STATE(1464), 1, - sym__reserved_identifier, - STATE(793), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52269] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2791), 1, - sym_name, - ACTIONS(2793), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym__reserved_identifier, - STATE(1414), 1, - sym_text_interpolation, - STATE(599), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52300] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(299), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2843), 1, - sym_name, - ACTIONS(2847), 1, - anon_sym_LBRACE, - STATE(1415), 1, - sym_text_interpolation, - ACTIONS(2845), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(625), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52329] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2833), 1, - sym_name, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1416), 1, - sym_text_interpolation, - STATE(1473), 1, - sym_reference_modifier, - STATE(1500), 1, - sym_formal_parameters, - STATE(2287), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52362] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(299), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2849), 1, - sym_name, - ACTIONS(2851), 1, - anon_sym_LBRACE, - STATE(1417), 1, - sym_text_interpolation, - ACTIONS(2845), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(620), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52391] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(2853), 1, - sym_name, - ACTIONS(2855), 1, - anon_sym_LBRACE, - STATE(1418), 1, - sym_text_interpolation, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(791), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52420] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(2857), 1, - sym_name, - ACTIONS(2859), 1, - anon_sym_LBRACE, - STATE(1419), 1, - sym_text_interpolation, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(792), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52449] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(299), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2797), 1, - anon_sym_LBRACE, - ACTIONS(2861), 1, - sym_name, - STATE(767), 1, - sym__reserved_identifier, - STATE(1420), 1, - sym_text_interpolation, - STATE(622), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52480] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2809), 1, - sym_name, - ACTIONS(2811), 1, - anon_sym_LBRACE, - STATE(1421), 1, - sym_text_interpolation, - STATE(1474), 1, - sym__reserved_identifier, - STATE(1477), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52511] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(2791), 1, - sym_name, - ACTIONS(2793), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym__reserved_identifier, - STATE(1422), 1, - sym_text_interpolation, - STATE(686), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52542] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(1423), 1, - sym_text_interpolation, - ACTIONS(2863), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [52569] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(832), 1, - sym_arguments, - STATE(1424), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [52598] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(2865), 1, - sym_name, - ACTIONS(2867), 1, - anon_sym_LBRACE, - STATE(1425), 1, - sym_text_interpolation, - ACTIONS(2655), 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, - [52627] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(2869), 1, - sym_name, - ACTIONS(2871), 1, - anon_sym_LBRACE, - STATE(1426), 1, - sym_text_interpolation, - ACTIONS(2729), 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, - [52656] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2839), 1, - sym_name, - ACTIONS(2841), 1, - anon_sym_LBRACE, - STATE(1427), 1, - sym_text_interpolation, - STATE(1464), 1, - sym__reserved_identifier, - STATE(1466), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52687] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(2873), 1, - sym_name, - ACTIONS(2875), 1, - anon_sym_LBRACE, - STATE(1428), 1, - sym_text_interpolation, - ACTIONS(2655), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(771), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52716] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(2877), 1, - sym_name, - ACTIONS(2879), 1, - anon_sym_LBRACE, - STATE(1429), 1, - sym_text_interpolation, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(689), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [52745] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(2791), 1, - sym_name, - ACTIONS(2793), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym__reserved_identifier, - STATE(1430), 1, - sym_text_interpolation, - STATE(797), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [52776] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1613), 1, - anon_sym_COLON_COLON, - ACTIONS(2563), 1, - aux_sym_arrow_function_token1, - ACTIONS(2881), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1431), 1, - sym_text_interpolation, - ACTIONS(1501), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [52802] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1042), 1, - sym_declaration_list, - STATE(1432), 1, - sym_text_interpolation, - STATE(1551), 1, - sym_arguments, - STATE(1742), 1, - sym_base_clause, - STATE(2160), 1, - sym_class_interface_clause, - [52836] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1433), 1, - sym_text_interpolation, - ACTIONS(2563), 8, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [52856] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1434), 1, - sym_text_interpolation, - ACTIONS(2455), 8, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [52876] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1435), 1, - sym_text_interpolation, - ACTIONS(2567), 8, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [52896] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_COMMA, - ACTIONS(2781), 1, - anon_sym_RPAREN, - STATE(1436), 1, - sym_text_interpolation, - STATE(1980), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [52922] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(914), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2889), 1, - aux_sym_catch_clause_token1, - ACTIONS(2892), 1, - aux_sym_finally_clause_token1, - ACTIONS(912), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - STATE(1437), 2, - sym_text_interpolation, - aux_sym_try_statement_repeat1, - STATE(1588), 2, - sym_catch_clause, - sym_finally_clause, - [52950] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - STATE(1438), 1, - sym_text_interpolation, - STATE(1440), 1, - sym_qualified_name, - STATE(1703), 1, - sym_named_type, - STATE(1829), 1, - sym_type_list, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - [52984] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_declaration_list, - STATE(1439), 1, - sym_text_interpolation, - STATE(1549), 1, - sym_arguments, - STATE(1774), 1, - sym_base_clause, - STATE(2099), 1, - sym_class_interface_clause, - [53018] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1440), 1, - sym_text_interpolation, - ACTIONS(2755), 8, - anon_sym_AMP, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [53038] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(2899), 1, - anon_sym_COMMA, - ACTIONS(2901), 1, - anon_sym_LBRACE, - STATE(1329), 1, - sym_use_list, - STATE(1441), 1, - sym_text_interpolation, - STATE(1515), 1, - aux_sym_base_clause_repeat1, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2897), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53070] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1124), 1, - sym_declaration_list, - STATE(1442), 1, - sym_text_interpolation, - STATE(1518), 1, - sym_arguments, - STATE(1701), 1, - sym_base_clause, - STATE(2189), 1, - sym_class_interface_clause, - [53104] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(906), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2903), 1, - aux_sym_catch_clause_token1, - ACTIONS(2905), 1, - aux_sym_finally_clause_token1, - STATE(1437), 1, - aux_sym_try_statement_repeat1, - STATE(1443), 1, - sym_text_interpolation, - ACTIONS(904), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - STATE(1588), 2, - sym_catch_clause, - sym_finally_clause, - [53134] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(876), 1, - sym_declaration_list, - STATE(1444), 1, - sym_text_interpolation, - STATE(1522), 1, - sym_arguments, - STATE(1740), 1, - sym_base_clause, - STATE(2216), 1, - sym_class_interface_clause, - [53168] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1445), 1, - sym_text_interpolation, - ACTIONS(2551), 8, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [53188] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_COMMA, - ACTIONS(2779), 1, - anon_sym_RPAREN, - STATE(1446), 1, - sym_text_interpolation, - STATE(1959), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53214] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1613), 1, - anon_sym_COLON_COLON, - ACTIONS(2563), 1, - aux_sym_arrow_function_token1, - ACTIONS(2735), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1447), 1, - sym_text_interpolation, - ACTIONS(1501), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53240] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_RPAREN, - STATE(1448), 1, - sym_text_interpolation, - STATE(1815), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53266] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1449), 1, - sym_text_interpolation, - ACTIONS(2494), 8, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [53286] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - STATE(1440), 1, - sym_qualified_name, - STATE(1450), 1, - sym_text_interpolation, - STATE(1703), 1, - sym_named_type, - STATE(1963), 1, - sym_type_list, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - [53320] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1451), 1, - sym_text_interpolation, - ACTIONS(2514), 8, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [53340] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1452), 1, - sym_text_interpolation, - ACTIONS(2907), 7, - anon_sym_AMP, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [53359] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1453), 1, - sym_text_interpolation, - ACTIONS(2789), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53380] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_BSLASHu, - STATE(1454), 1, - sym_text_interpolation, - ACTIONS(2601), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [53401] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1455), 1, - sym_text_interpolation, - ACTIONS(2911), 7, - anon_sym_AMP, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [53420] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(1456), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53443] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(2915), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1457), 1, - sym_text_interpolation, - STATE(1947), 1, - sym_namespace_aliasing_clause, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2913), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [53470] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - anon_sym_DASH, - STATE(1458), 1, - sym_text_interpolation, - STATE(2350), 1, - sym__simple_string_array_access_argument, - ACTIONS(2917), 2, - sym_integer, - sym_name, - STATE(2353), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [53497] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2923), 1, - anon_sym_BSLASHu, - STATE(1459), 1, - sym_text_interpolation, - ACTIONS(2921), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [53518] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2927), 1, - aux_sym_enum_case_token1, - ACTIONS(2930), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2925), 2, - anon_sym_RBRACE, - aux_sym_switch_block_token1, - STATE(1460), 2, - sym_text_interpolation, - aux_sym_switch_block_repeat1, - STATE(1761), 2, - sym_case_statement, - sym_default_statement, - [53543] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2935), 1, - anon_sym_BSLASHu, - STATE(1461), 1, - sym_text_interpolation, - ACTIONS(2933), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [53564] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_arguments, - STATE(1462), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53587] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2731), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2733), 1, - aux_sym_use_instead_of_clause_token1, - STATE(1463), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53610] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(813), 1, - sym_arguments, - STATE(1464), 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, - [53633] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1475), 1, - anon_sym_BSLASHu, - STATE(1465), 1, - sym_text_interpolation, - ACTIONS(1473), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [53654] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(813), 1, - sym_arguments, - STATE(1466), 1, - sym_text_interpolation, - ACTIONS(1461), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53677] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(633), 1, - sym_arguments, - STATE(1467), 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, - [53700] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(209), 1, - anon_sym_BSLASH, - ACTIONS(550), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1700), 1, - sym_name, - STATE(1440), 1, - sym_qualified_name, - STATE(1468), 1, - sym_text_interpolation, - STATE(1835), 1, - sym_named_type, - STATE(2387), 1, - sym_namespace_name_as_prefix, - STATE(2400), 1, - sym_namespace_name, - [53731] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1479), 1, - anon_sym_BSLASHu, - STATE(1469), 1, - sym_text_interpolation, - ACTIONS(1477), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [53752] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1470), 1, - sym_text_interpolation, - ACTIONS(1744), 3, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(1742), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [53773] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1491), 1, - anon_sym_BSLASHu, - STATE(1471), 1, - sym_text_interpolation, - ACTIONS(1489), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [53794] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1472), 1, - sym_text_interpolation, - ACTIONS(2799), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53815] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - ACTIONS(2937), 1, - sym_name, - STATE(1473), 1, - sym_text_interpolation, - STATE(1517), 1, - sym_formal_parameters, - STATE(2056), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53842] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(719), 1, - sym_arguments, - STATE(1474), 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, - [53865] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2941), 1, - anon_sym_BSLASHu, - STATE(1475), 1, - sym_text_interpolation, - ACTIONS(2939), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [53886] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1476), 1, - sym_text_interpolation, - ACTIONS(2943), 7, - anon_sym_AMP, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [53905] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(719), 1, - sym_arguments, - STATE(1477), 1, - sym_text_interpolation, - ACTIONS(1461), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53928] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1478), 1, - sym_text_interpolation, - ACTIONS(2863), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53949] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - ACTIONS(2937), 1, - sym_name, - STATE(1479), 1, - sym_text_interpolation, - STATE(1506), 1, - sym_formal_parameters, - STATE(2056), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53976] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2947), 1, - anon_sym_BSLASHu, - STATE(1480), 1, - sym_text_interpolation, - ACTIONS(2945), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [53997] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2951), 1, - anon_sym_BSLASHu, - STATE(1481), 1, - sym_text_interpolation, - ACTIONS(2949), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [54018] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(725), 1, - sym_arguments, - STATE(1482), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54041] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(631), 1, - sym_arguments, - STATE(1483), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54064] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2765), 1, - anon_sym_BSLASHu, - STATE(1484), 1, - sym_text_interpolation, - ACTIONS(2759), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [54085] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2953), 1, - sym_name, - STATE(1485), 1, - sym_text_interpolation, - STATE(1609), 1, - sym_reference_modifier, - STATE(2173), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54112] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(832), 1, - sym_arguments, - STATE(1486), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54135] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1487), 1, - sym_text_interpolation, - ACTIONS(2955), 7, - anon_sym_AMP, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [54154] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(725), 1, - sym_arguments, - STATE(1488), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54177] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(631), 1, - sym_arguments, - STATE(1489), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54200] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2959), 1, - anon_sym_BSLASHu, - STATE(1490), 1, - sym_text_interpolation, - ACTIONS(2957), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOLLAR, - [54221] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(832), 1, - sym_arguments, - STATE(1491), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54244] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2961), 1, - aux_sym_enum_case_token1, - ACTIONS(2963), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2965), 1, - aux_sym_switch_block_token1, - STATE(1460), 1, - aux_sym_switch_block_repeat1, - STATE(1492), 1, - sym_text_interpolation, - STATE(1761), 2, - sym_case_statement, - sym_default_statement, - [54270] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1493), 1, - sym_text_interpolation, - STATE(1557), 1, - sym_declaration_list, - STATE(1730), 1, - sym_base_clause, - STATE(2226), 1, - sym_class_interface_clause, - [54298] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(866), 1, - sym_compound_statement, - STATE(1494), 1, - sym_text_interpolation, - STATE(1735), 1, - sym_anonymous_function_use_clause, - STATE(2265), 1, - sym__return_type, - [54326] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2899), 1, - anon_sym_COMMA, - ACTIONS(2901), 1, - anon_sym_LBRACE, - STATE(1329), 1, - sym_use_list, - STATE(1495), 1, - sym_text_interpolation, - STATE(1515), 1, - aux_sym_base_clause_repeat1, - ACTIONS(2897), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54352] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2971), 1, - aux_sym_if_statement_token2, - ACTIONS(2973), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2975), 1, - aux_sym_else_clause_token1, - STATE(1496), 1, - sym_text_interpolation, - STATE(1548), 1, - aux_sym_if_statement_repeat2, - STATE(1928), 1, - sym_else_if_clause_2, - STATE(2397), 1, - sym_else_clause_2, - [54380] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2961), 1, - aux_sym_enum_case_token1, - ACTIONS(2963), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2977), 1, - aux_sym_switch_block_token1, - STATE(1492), 1, - aux_sym_switch_block_repeat1, - STATE(1497), 1, - sym_text_interpolation, - STATE(1761), 2, - sym_case_statement, - sym_default_statement, - [54406] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2979), 1, - sym_name, - STATE(1498), 1, - sym_text_interpolation, - STATE(1753), 1, - sym_const_element, - STATE(2305), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54430] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(896), 1, - sym_compound_statement, - STATE(1499), 1, - sym_text_interpolation, - STATE(1732), 1, - sym_anonymous_function_use_clause, - STATE(2175), 1, - sym__return_type, - [54458] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1106), 1, - sym_compound_statement, - STATE(1500), 1, - sym_text_interpolation, - STATE(1709), 1, - sym_anonymous_function_use_clause, - STATE(2042), 1, - sym__return_type, - [54486] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2973), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2975), 1, - aux_sym_else_clause_token1, - ACTIONS(2983), 1, - aux_sym_if_statement_token2, - STATE(1501), 1, - sym_text_interpolation, - STATE(1601), 1, - aux_sym_if_statement_repeat2, - STATE(1928), 1, - sym_else_if_clause_2, - STATE(2465), 1, - sym_else_clause_2, - [54514] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(477), 1, - sym_declaration_list, - STATE(1502), 1, - sym_text_interpolation, - STATE(1634), 1, - sym_base_clause, - STATE(2212), 1, - sym_class_interface_clause, - [54542] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(862), 1, - sym_compound_statement, - STATE(1503), 1, - sym_text_interpolation, - STATE(1752), 1, - sym_anonymous_function_use_clause, - STATE(2119), 1, - sym__return_type, - [54570] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(2987), 1, - anon_sym_COMMA, - STATE(1504), 1, - sym_text_interpolation, - STATE(1665), 1, - aux_sym_base_clause_repeat1, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2989), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [54596] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1125), 1, - sym_compound_statement, - STATE(1505), 1, - sym_text_interpolation, - STATE(1657), 1, - sym_anonymous_function_use_clause, - STATE(2242), 1, - sym__return_type, - [54624] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1080), 1, - sym_compound_statement, - STATE(1506), 1, - sym_text_interpolation, - STATE(1646), 1, - sym_anonymous_function_use_clause, - STATE(2060), 1, - sym__return_type, - [54652] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1058), 1, - sym_compound_statement, - STATE(1507), 1, - sym_text_interpolation, - STATE(1780), 1, - sym_anonymous_function_use_clause, - STATE(2188), 1, - sym__return_type, - [54680] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1098), 1, - sym_compound_statement, - STATE(1508), 1, - sym_text_interpolation, - STATE(1644), 1, - sym_anonymous_function_use_clause, - STATE(2210), 1, - sym__return_type, - [54708] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2979), 1, - sym_name, - STATE(1509), 1, - sym_text_interpolation, - STATE(1673), 1, - sym_const_element, - STATE(2305), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54732] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(2991), 1, - sym_php_tag, - ACTIONS(2995), 1, - sym__eof, - STATE(1510), 1, - sym_text_interpolation, - STATE(1596), 1, - aux_sym_text_repeat1, - STATE(2047), 1, - sym_text, - ACTIONS(2993), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [54758] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(468), 1, - sym_declaration_list, - STATE(1511), 1, - sym_text_interpolation, - STATE(1655), 1, - sym_base_clause, - STATE(2204), 1, - sym_class_interface_clause, - [54786] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2997), 1, - anon_sym_PIPE, - STATE(1512), 2, - sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(2911), 4, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [54806] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1513), 1, - sym_text_interpolation, - STATE(1617), 1, - sym_declaration_list, - STATE(1750), 1, - sym_base_clause, - STATE(2143), 1, - sym_class_interface_clause, - [54834] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2961), 1, - aux_sym_enum_case_token1, - ACTIONS(2963), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3000), 1, - anon_sym_RBRACE, - STATE(1514), 1, - sym_text_interpolation, - STATE(1542), 1, - aux_sym_switch_block_repeat1, - STATE(1761), 2, - sym_case_statement, - sym_default_statement, - [54860] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2899), 1, - anon_sym_COMMA, - ACTIONS(2901), 1, - anon_sym_LBRACE, - STATE(1342), 1, - sym_use_list, - STATE(1515), 1, - sym_text_interpolation, - STATE(1595), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3002), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54886] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1084), 1, - sym_compound_statement, - STATE(1516), 1, - sym_text_interpolation, - STATE(1648), 1, - sym_anonymous_function_use_clause, - STATE(2055), 1, - sym__return_type, - [54914] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1023), 1, - sym_compound_statement, - STATE(1517), 1, - sym_text_interpolation, - STATE(1661), 1, - sym_anonymous_function_use_clause, - STATE(2090), 1, - sym__return_type, - [54942] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1039), 1, - sym_declaration_list, - STATE(1518), 1, - sym_text_interpolation, - STATE(1743), 1, - sym_base_clause, - STATE(2159), 1, - sym_class_interface_clause, - [54970] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(930), 1, - aux_sym_while_statement_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3004), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3006), 1, - aux_sym_else_clause_token1, - STATE(1519), 1, - sym_text_interpolation, - STATE(1602), 1, - aux_sym_if_statement_repeat1, - STATE(2013), 1, - sym_else_if_clause, - STATE(2023), 1, - sym_else_clause, - [54998] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2961), 1, - aux_sym_enum_case_token1, - ACTIONS(2963), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3008), 1, - aux_sym_switch_block_token1, - STATE(1520), 1, - sym_text_interpolation, - STATE(1521), 1, - aux_sym_switch_block_repeat1, - STATE(1761), 2, - sym_case_statement, - sym_default_statement, - [55024] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2961), 1, - aux_sym_enum_case_token1, - ACTIONS(2963), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3010), 1, - aux_sym_switch_block_token1, - STATE(1460), 1, - aux_sym_switch_block_repeat1, - STATE(1521), 1, - sym_text_interpolation, - STATE(1761), 2, - sym_case_statement, - sym_default_statement, - [55050] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(894), 1, - sym_declaration_list, - STATE(1522), 1, - sym_text_interpolation, - STATE(1773), 1, - sym_base_clause, - STATE(2091), 1, - sym_class_interface_clause, - [55078] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1523), 1, - sym_text_interpolation, - STATE(1623), 1, - sym_declaration_list, - STATE(1777), 1, - sym_base_clause, - STATE(2103), 1, - sym_class_interface_clause, - [55106] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(1524), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2755), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [55128] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2961), 1, - aux_sym_enum_case_token1, - ACTIONS(2963), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3012), 1, - anon_sym_RBRACE, - STATE(1525), 1, - sym_text_interpolation, - STATE(1533), 1, - aux_sym_switch_block_repeat1, - STATE(1761), 2, - sym_case_statement, - sym_default_statement, - [55154] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2979), 1, - sym_name, - STATE(1526), 1, - sym_text_interpolation, - STATE(1972), 1, - sym_const_element, - STATE(2305), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55178] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(865), 1, - sym_compound_statement, - STATE(1527), 1, - sym_text_interpolation, - STATE(1736), 1, - sym_anonymous_function_use_clause, - STATE(2258), 1, - sym__return_type, - [55206] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(853), 1, - sym_compound_statement, - STATE(1528), 1, - sym_text_interpolation, - STATE(1724), 1, - sym_anonymous_function_use_clause, - STATE(2206), 1, - sym__return_type, - [55234] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(1529), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - STATE(2224), 1, - sym_arguments, - ACTIONS(3014), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [55260] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(870), 1, - sym_compound_statement, - STATE(1530), 1, - sym_text_interpolation, - STATE(1747), 1, - sym_anonymous_function_use_clause, - STATE(2263), 1, - sym__return_type, - [55288] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1531), 1, - sym_text_interpolation, - ACTIONS(3016), 6, - anon_sym_AMP, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [55306] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_PIPE, - STATE(1512), 1, - aux_sym_union_type_repeat1, - STATE(1532), 1, - sym_text_interpolation, - ACTIONS(3018), 4, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [55328] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2961), 1, - aux_sym_enum_case_token1, - ACTIONS(2963), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3022), 1, - anon_sym_RBRACE, - STATE(1460), 1, - aux_sym_switch_block_repeat1, - STATE(1533), 1, - sym_text_interpolation, - STATE(1761), 2, - sym_case_statement, - sym_default_statement, - [55354] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1027), 1, - sym_compound_statement, - STATE(1534), 1, - sym_text_interpolation, - STATE(1638), 1, - sym_anonymous_function_use_clause, - STATE(2156), 1, - sym__return_type, - [55382] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1535), 1, - sym_text_interpolation, - STATE(1597), 1, - sym_declaration_list, - STATE(1733), 1, - sym_base_clause, - STATE(2290), 1, - sym_class_interface_clause, - [55410] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2979), 1, - sym_name, - STATE(1536), 1, - sym_text_interpolation, - STATE(1691), 1, - sym_const_element, - STATE(2305), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55434] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(1537), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3024), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - [55456] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(902), 1, - sym_compound_statement, - STATE(1538), 1, - sym_text_interpolation, - STATE(1762), 1, - sym_anonymous_function_use_clause, - STATE(2107), 1, - sym__return_type, - [55484] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(930), 1, - aux_sym_while_statement_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3029), 1, - aux_sym_else_clause_token1, - STATE(1539), 1, - sym_text_interpolation, - STATE(1602), 1, - aux_sym_if_statement_repeat1, - STATE(2013), 1, - sym_else_if_clause, - STATE(2023), 1, - sym_else_clause, - [55512] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(464), 1, - sym_declaration_list, - STATE(1540), 1, - sym_text_interpolation, - STATE(1672), 1, - sym_base_clause, - STATE(2081), 1, - sym_class_interface_clause, - [55540] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2973), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2975), 1, - aux_sym_else_clause_token1, - ACTIONS(3032), 1, - aux_sym_if_statement_token2, - STATE(1501), 1, - aux_sym_if_statement_repeat2, - STATE(1541), 1, - sym_text_interpolation, - STATE(1928), 1, - sym_else_if_clause_2, - STATE(2476), 1, - sym_else_clause_2, - [55568] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2961), 1, - aux_sym_enum_case_token1, - ACTIONS(2963), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3034), 1, - anon_sym_RBRACE, - STATE(1460), 1, - aux_sym_switch_block_repeat1, - STATE(1542), 1, - sym_text_interpolation, - STATE(1761), 2, - sym_case_statement, - sym_default_statement, - [55594] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(470), 1, - sym_declaration_list, - STATE(1543), 1, - sym_text_interpolation, - STATE(1640), 1, - sym_base_clause, - STATE(2065), 1, - sym_class_interface_clause, - [55622] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2979), 1, - sym_name, - STATE(1544), 1, - sym_text_interpolation, - STATE(1658), 1, - sym_const_element, - STATE(2305), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55646] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(922), 1, - aux_sym_while_statement_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3036), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3039), 1, - aux_sym_else_clause_token1, - STATE(1539), 1, - aux_sym_if_statement_repeat1, - STATE(1545), 1, - sym_text_interpolation, - STATE(1954), 1, - sym_else_clause, - STATE(2013), 1, - sym_else_if_clause, - [55674] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2979), 1, - sym_name, - STATE(1546), 1, - sym_text_interpolation, - STATE(1692), 1, - sym_const_element, - STATE(2305), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55698] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(922), 1, - aux_sym_while_statement_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3004), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3006), 1, - aux_sym_else_clause_token1, - STATE(1519), 1, - aux_sym_if_statement_repeat1, - STATE(1547), 1, - sym_text_interpolation, - STATE(1954), 1, - sym_else_clause, - STATE(2013), 1, - sym_else_if_clause, - [55726] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2973), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2975), 1, - aux_sym_else_clause_token1, - ACTIONS(3042), 1, - aux_sym_if_statement_token2, - STATE(1548), 1, - sym_text_interpolation, - STATE(1601), 1, - aux_sym_if_statement_repeat2, - STATE(1928), 1, - sym_else_if_clause_2, - STATE(2402), 1, - sym_else_clause_2, - [55754] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(861), 1, - sym_declaration_list, - STATE(1549), 1, - sym_text_interpolation, - STATE(1739), 1, - sym_base_clause, - STATE(2198), 1, - sym_class_interface_clause, - [55782] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2967), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(903), 1, - sym_compound_statement, - STATE(1550), 1, - sym_text_interpolation, - STATE(1765), 1, - sym_anonymous_function_use_clause, - STATE(2102), 1, - sym__return_type, - [55810] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1100), 1, - sym_declaration_list, - STATE(1551), 1, - sym_text_interpolation, - STATE(1719), 1, - sym_base_clause, - STATE(2115), 1, - sym_class_interface_clause, - [55838] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2979), 1, - sym_name, - STATE(1552), 1, - sym_text_interpolation, - STATE(1756), 1, - sym_const_element, - STATE(2305), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55862] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_PIPE, - STATE(1532), 1, - aux_sym_union_type_repeat1, - STATE(1553), 1, - sym_text_interpolation, - ACTIONS(3044), 4, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [55884] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3046), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - ACTIONS(3050), 1, - anon_sym_DASH_GT, - ACTIONS(3052), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3054), 1, - anon_sym_LBRACK, - STATE(1554), 1, - sym_text_interpolation, - [55909] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3058), 1, - anon_sym_BSLASH, - STATE(1555), 1, - sym_text_interpolation, - STATE(1592), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3056), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [55930] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - ACTIONS(3060), 1, - anon_sym_LBRACE, - ACTIONS(3062), 1, - anon_sym_DASH_GT, - ACTIONS(3064), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3066), 1, - anon_sym_LBRACK, - STATE(1556), 1, - sym_text_interpolation, - [55955] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(979), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1557), 1, - sym_text_interpolation, - ACTIONS(977), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3068), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55976] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1019), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1558), 1, - sym_text_interpolation, - ACTIONS(1017), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3070), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [55997] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1025), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1559), 1, - sym_text_interpolation, - ACTIONS(1023), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3072), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56018] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3074), 1, - anon_sym_AMP, - ACTIONS(3076), 1, - anon_sym_RPAREN, - STATE(1560), 1, - sym_text_interpolation, - STATE(2233), 2, - sym_variable_name, - sym_variable_reference, - [56041] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(211), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3080), 1, - anon_sym_BSLASH, - STATE(509), 1, - sym_compound_statement, - STATE(1561), 1, - sym_text_interpolation, - ACTIONS(3078), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56064] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - ACTIONS(3082), 1, - anon_sym_LBRACE, - ACTIONS(3084), 1, - anon_sym_DASH_GT, - ACTIONS(3086), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3088), 1, - anon_sym_LBRACK, - STATE(1562), 1, - sym_text_interpolation, - [56089] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(960), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1563), 1, - sym_text_interpolation, - ACTIONS(958), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [56108] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_EQ, - STATE(1564), 1, - sym_text_interpolation, - STATE(1795), 1, - sym_property_initializer, - ACTIONS(3090), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [56129] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1722), 1, - anon_sym_DOLLAR, - ACTIONS(3094), 1, - sym_name, - ACTIONS(3096), 1, - anon_sym_LBRACE, - STATE(1565), 1, - sym_text_interpolation, - STATE(718), 2, - sym_dynamic_variable_name, - sym_variable_name, - [56152] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2903), 1, - aux_sym_catch_clause_token1, - ACTIONS(2905), 1, - aux_sym_finally_clause_token1, - STATE(1443), 1, - aux_sym_try_statement_repeat1, - STATE(1566), 1, - sym_text_interpolation, - STATE(1588), 2, - sym_catch_clause, - sym_finally_clause, - [56175] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3080), 1, - anon_sym_BSLASH, - STATE(1567), 1, - sym_text_interpolation, - STATE(1900), 1, - sym_compound_statement, - ACTIONS(3098), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56198] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3058), 1, - anon_sym_BSLASH, - STATE(1555), 1, - aux_sym_namespace_name_repeat1, - STATE(1568), 1, - sym_text_interpolation, - ACTIONS(3100), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [56219] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(592), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3102), 1, - sym_name, - ACTIONS(3104), 1, - anon_sym_LBRACE, - STATE(1569), 1, - sym_text_interpolation, - STATE(606), 2, - sym_dynamic_variable_name, - sym_variable_name, - [56242] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3106), 1, - sym_php_tag, - ACTIONS(3111), 1, - sym__eof, - ACTIONS(3108), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(1570), 2, - sym_text_interpolation, - aux_sym_text_repeat1, - [56263] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3113), 1, - anon_sym_DOT_DOT_DOT, - STATE(1571), 1, - sym_text_interpolation, - STATE(1846), 1, - sym_variable_name, - STATE(1847), 1, - sym_reference_modifier, - [56288] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_BSLASH, - STATE(1572), 1, - sym_text_interpolation, - STATE(1576), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3100), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [56309] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(964), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1573), 1, - sym_text_interpolation, - ACTIONS(962), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [56328] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3118), 1, - anon_sym_PIPE, - STATE(1574), 1, - sym_text_interpolation, - STATE(1603), 1, - aux_sym_union_type_repeat1, - ACTIONS(3018), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [56349] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1575), 1, - sym_text_interpolation, - ACTIONS(1437), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56366] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3120), 1, - anon_sym_BSLASH, - STATE(1576), 1, - sym_text_interpolation, - STATE(1600), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3056), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [56387] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3123), 1, - anon_sym_LBRACE, - ACTIONS(3125), 1, - anon_sym_COLON, - STATE(1577), 1, - sym_text_interpolation, - STATE(1911), 1, - sym_enum_declaration_list, - STATE(2213), 1, - sym_class_interface_clause, - [56412] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(211), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3127), 1, - sym_name, - ACTIONS(3129), 1, - anon_sym_BSLASH, - STATE(562), 1, - sym_compound_statement, - STATE(1561), 1, - sym_namespace_name, - STATE(1578), 1, - sym_text_interpolation, - [56437] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3133), 1, - anon_sym_COLON, - STATE(1579), 1, - sym_text_interpolation, - STATE(1951), 1, - sym__return_type, - ACTIONS(3131), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [56458] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3135), 1, - ts_builtin_sym_end, - ACTIONS(3137), 1, - sym_php_tag, - STATE(1580), 1, - sym_text_interpolation, - STATE(1621), 1, - aux_sym_text_repeat1, - ACTIONS(13), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [56481] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3139), 1, - sym_name, - ACTIONS(3141), 1, - anon_sym_LBRACE, - ACTIONS(3143), 1, - anon_sym_DOLLAR, - STATE(1581), 1, - sym_text_interpolation, - STATE(1471), 2, - sym_dynamic_variable_name, - sym_variable_name, - [56504] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1007), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1582), 1, - sym_text_interpolation, - ACTIONS(1005), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3145), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56525] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1035), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1583), 1, - sym_text_interpolation, - ACTIONS(1033), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3147), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56546] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - ACTIONS(3060), 1, - anon_sym_LBRACE, - ACTIONS(3066), 1, - anon_sym_LBRACK, - ACTIONS(3149), 1, - anon_sym_DASH_GT, - ACTIONS(3151), 1, - anon_sym_QMARK_DASH_GT, - STATE(1584), 1, - sym_text_interpolation, - [56571] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - ACTIONS(3060), 1, - anon_sym_LBRACE, - ACTIONS(3066), 1, - anon_sym_LBRACK, - ACTIONS(3153), 1, - anon_sym_DASH_GT, - ACTIONS(3155), 1, - anon_sym_QMARK_DASH_GT, - STATE(1585), 1, - sym_text_interpolation, - [56596] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DOLLAR, - ACTIONS(3157), 1, - sym_name, - ACTIONS(3159), 1, - anon_sym_LBRACE, - STATE(1586), 1, - sym_text_interpolation, - STATE(819), 2, - sym_dynamic_variable_name, - sym_variable_name, - [56619] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3141), 1, - anon_sym_LBRACE, - ACTIONS(3143), 1, - anon_sym_DOLLAR, - ACTIONS(3161), 1, - sym_name, - STATE(1587), 1, - sym_text_interpolation, - STATE(1471), 2, - sym_dynamic_variable_name, - sym_variable_name, - [56642] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(956), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1588), 1, - sym_text_interpolation, - ACTIONS(954), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [56661] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(1589), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3024), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [56682] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3163), 1, - aux_sym_catch_clause_token1, - ACTIONS(3165), 1, - aux_sym_finally_clause_token1, - STATE(451), 1, - aux_sym_try_statement_repeat1, - STATE(1590), 1, - sym_text_interpolation, - STATE(459), 2, - sym_catch_clause, - sym_finally_clause, - [56705] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3167), 1, - sym_name, - STATE(1591), 1, - sym_text_interpolation, - STATE(1688), 1, - sym_namespace_name, - STATE(1859), 1, - sym_namespace_use_group_clause, - ACTIONS(3169), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [56728] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3173), 1, - anon_sym_BSLASH, - STATE(1592), 2, - sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(3171), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [56747] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - ACTIONS(3176), 1, - anon_sym_LBRACE, - ACTIONS(3178), 1, - anon_sym_DASH_GT, - ACTIONS(3180), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3182), 1, - anon_sym_LBRACK, - STATE(1593), 1, - sym_text_interpolation, - [56772] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3046), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - ACTIONS(3054), 1, - anon_sym_LBRACK, - ACTIONS(3184), 1, - anon_sym_DASH_GT, - ACTIONS(3186), 1, - anon_sym_QMARK_DASH_GT, - STATE(1594), 1, - sym_text_interpolation, - [56797] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3188), 1, - anon_sym_COMMA, - STATE(1595), 2, - sym_text_interpolation, - aux_sym_base_clause_repeat1, - ACTIONS(3024), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [56816] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3135), 1, - sym__eof, - ACTIONS(3137), 1, - sym_php_tag, - STATE(1570), 1, - aux_sym_text_repeat1, - STATE(1596), 1, - sym_text_interpolation, - ACTIONS(2993), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [56839] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1013), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1597), 1, - sym_text_interpolation, - ACTIONS(1011), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3191), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56860] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(995), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1598), 1, - sym_text_interpolation, - ACTIONS(993), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3193), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56881] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1041), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1599), 1, - sym_text_interpolation, - ACTIONS(1039), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3195), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56902] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3197), 1, - anon_sym_BSLASH, - STATE(1600), 2, - sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(3171), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [56921] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3200), 1, - aux_sym_if_statement_token2, - ACTIONS(3202), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3205), 1, - aux_sym_else_clause_token1, - STATE(1928), 1, - sym_else_if_clause_2, - STATE(1601), 2, - sym_text_interpolation, - aux_sym_if_statement_repeat2, - [56944] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(970), 1, - aux_sym_while_statement_token1, - ACTIONS(972), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3207), 1, - aux_sym_else_if_clause_token1, - STATE(2013), 1, - sym_else_if_clause, - STATE(1602), 2, - sym_text_interpolation, - aux_sym_if_statement_repeat1, - [56967] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3210), 1, - anon_sym_PIPE, - STATE(1603), 2, - sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(2911), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [56986] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3213), 1, - anon_sym_LBRACE, - ACTIONS(3215), 1, - anon_sym_COLON, - STATE(538), 1, - sym_enum_declaration_list, - STATE(1604), 1, - sym_text_interpolation, - STATE(2077), 1, - sym_class_interface_clause, - [57011] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3127), 1, - sym_name, - ACTIONS(3129), 1, - anon_sym_BSLASH, - STATE(1567), 1, - sym_namespace_name, - STATE(1605), 1, - sym_text_interpolation, - STATE(1862), 1, - sym_compound_statement, - [57036] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(3217), 1, - anon_sym_LBRACE, - STATE(1606), 1, - sym_text_interpolation, - STATE(1831), 1, - aux_sym_base_clause_repeat1, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - [57061] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1047), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1607), 1, - sym_text_interpolation, - ACTIONS(1045), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3219), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57082] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3074), 1, - anon_sym_AMP, - ACTIONS(3221), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym_text_interpolation, - STATE(2233), 2, - sym_variable_name, - sym_variable_reference, - [57105] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3223), 1, - sym_name, - STATE(1609), 1, - sym_text_interpolation, - STATE(2202), 1, - sym__reserved_identifier, - ACTIONS(2729), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [57126] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(299), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3225), 1, - sym_name, - ACTIONS(3227), 1, - anon_sym_LBRACE, - STATE(1610), 1, - sym_text_interpolation, - STATE(642), 2, - sym_dynamic_variable_name, - sym_variable_name, - [57149] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - ACTIONS(3176), 1, - anon_sym_LBRACE, - ACTIONS(3182), 1, - anon_sym_LBRACK, - ACTIONS(3229), 1, - anon_sym_DASH_GT, - ACTIONS(3231), 1, - anon_sym_QMARK_DASH_GT, - STATE(1611), 1, - sym_text_interpolation, - [57174] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3118), 1, - anon_sym_PIPE, - STATE(1574), 1, - aux_sym_union_type_repeat1, - STATE(1612), 1, - sym_text_interpolation, - ACTIONS(3044), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [57195] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3233), 1, - anon_sym_PIPE, - STATE(1613), 2, - sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(2911), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [57214] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3236), 1, - anon_sym_DOT_DOT_DOT, - STATE(1614), 1, - sym_text_interpolation, - STATE(1955), 1, - sym_reference_modifier, - STATE(1956), 1, - sym_variable_name, - [57239] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3238), 1, - anon_sym_PIPE, - STATE(1615), 1, - sym_text_interpolation, - STATE(1628), 1, - aux_sym_union_type_repeat1, - ACTIONS(3044), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [57260] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3213), 1, - anon_sym_LBRACE, - ACTIONS(3240), 1, - anon_sym_COLON, - STATE(561), 1, - sym_enum_declaration_list, - STATE(1616), 1, - sym_text_interpolation, - STATE(2211), 1, - sym_class_interface_clause, - [57285] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1053), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1617), 1, - sym_text_interpolation, - ACTIONS(1051), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3242), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57306] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3123), 1, - anon_sym_LBRACE, - ACTIONS(3244), 1, - anon_sym_COLON, - STATE(1618), 1, - sym_text_interpolation, - STATE(1969), 1, - sym_enum_declaration_list, - STATE(2129), 1, - sym_class_interface_clause, - [57331] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3046), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - ACTIONS(3054), 1, - anon_sym_LBRACK, - ACTIONS(3246), 1, - anon_sym_DASH_GT, - ACTIONS(3248), 1, - anon_sym_QMARK_DASH_GT, - STATE(1619), 1, - sym_text_interpolation, - [57356] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3250), 1, - sym_name, - STATE(1620), 1, - sym_text_interpolation, - STATE(1845), 1, - sym_visibility_modifier, - ACTIONS(3252), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [57377] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3106), 1, - sym_php_tag, - ACTIONS(3111), 1, - ts_builtin_sym_end, - ACTIONS(3254), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(1621), 2, - sym_text_interpolation, - aux_sym_text_repeat1, - [57398] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3167), 1, - sym_name, - STATE(1622), 1, - sym_text_interpolation, - STATE(1688), 1, - sym_namespace_name, - STATE(2039), 1, - sym_namespace_use_group_clause, - ACTIONS(3169), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [57421] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1001), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1623), 1, - sym_text_interpolation, - ACTIONS(999), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3257), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57442] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(948), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1624), 1, - sym_text_interpolation, - ACTIONS(946), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [57461] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2915), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1625), 1, - sym_text_interpolation, - STATE(1947), 1, - sym_namespace_aliasing_clause, - ACTIONS(2913), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [57482] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(985), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1626), 1, - sym_text_interpolation, - ACTIONS(983), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3259), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57503] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3133), 1, - anon_sym_COLON, - STATE(1627), 1, - sym_text_interpolation, - STATE(1971), 1, - sym__return_type, - ACTIONS(3261), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [57524] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3238), 1, - anon_sym_PIPE, - STATE(1613), 1, - aux_sym_union_type_repeat1, - STATE(1628), 1, - sym_text_interpolation, - ACTIONS(3018), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [57545] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3074), 1, - anon_sym_AMP, - STATE(1629), 1, - sym_text_interpolation, - STATE(1842), 2, - sym_variable_name, - sym_variable_reference, - [57565] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3265), 1, - anon_sym_COMMA, - ACTIONS(3263), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1630), 2, - sym_text_interpolation, - aux_sym_function_static_declaration_repeat1, - [57583] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3074), 1, - anon_sym_AMP, - STATE(1631), 1, - sym_text_interpolation, - STATE(2233), 2, - sym_variable_name, - sym_variable_reference, - [57603] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1632), 1, - sym_text_interpolation, - STATE(1668), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3268), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57623] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3274), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1633), 1, - sym_text_interpolation, - STATE(2218), 1, - sym_namespace_aliasing_clause, - ACTIONS(3272), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [57643] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(467), 1, - sym_declaration_list, - STATE(1634), 1, - sym_text_interpolation, - STATE(2064), 1, - sym_class_interface_clause, - [57665] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3278), 1, - anon_sym_COMMA, - ACTIONS(3276), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1635), 2, - sym_text_interpolation, - aux_sym_global_declaration_repeat1, - [57683] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1636), 1, - sym_text_interpolation, - STATE(1708), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3281), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57703] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3285), 1, - anon_sym_SEMI, - ACTIONS(3287), 1, - anon_sym_LBRACE, - ACTIONS(3289), 1, - sym__automatic_semicolon, - STATE(1326), 1, - sym_compound_statement, - STATE(1637), 1, - sym_text_interpolation, - [57725] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1118), 1, - sym_compound_statement, - STATE(1638), 1, - sym_text_interpolation, - STATE(2249), 1, - sym__return_type, - [57747] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1639), 1, - sym_text_interpolation, - STATE(1864), 1, - sym_formal_parameters, - STATE(2240), 1, - sym_reference_modifier, - [57769] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(471), 1, - sym_declaration_list, - STATE(1640), 1, - sym_text_interpolation, - STATE(2203), 1, - sym_class_interface_clause, - [57791] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3291), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3293), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(3295), 1, - aux_sym_arrow_function_token1, - STATE(1641), 1, - sym_text_interpolation, - STATE(2490), 1, - sym_static_modifier, - [57813] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1642), 1, - sym_text_interpolation, - STATE(1668), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3297), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57833] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3213), 1, - anon_sym_LBRACE, - STATE(531), 1, - sym_enum_declaration_list, - STATE(1643), 1, - sym_text_interpolation, - STATE(2197), 1, - sym_class_interface_clause, - [57855] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1064), 1, - sym_compound_statement, - STATE(1644), 1, - sym_text_interpolation, - STATE(2061), 1, - sym__return_type, - [57877] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1645), 1, - sym_text_interpolation, - ACTIONS(3299), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [57893] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1052), 1, - sym_compound_statement, - STATE(1646), 1, - sym_text_interpolation, - STATE(2196), 1, - sym__return_type, - [57915] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1647), 1, - sym_text_interpolation, - STATE(2425), 1, - sym_declare_directive, - ACTIONS(3301), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [57933] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1054), 1, - sym_compound_statement, - STATE(1648), 1, - sym_text_interpolation, - STATE(2192), 1, - sym__return_type, - [57955] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1649), 1, - sym_text_interpolation, - STATE(1876), 1, - sym_formal_parameters, - STATE(2243), 1, - sym_reference_modifier, - [57977] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3303), 1, - ts_builtin_sym_end, - STATE(1650), 1, - sym_text_interpolation, - ACTIONS(3305), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [57995] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_COMMA, - STATE(1651), 1, - sym_text_interpolation, - STATE(1652), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3307), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58015] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3313), 1, - anon_sym_COMMA, - ACTIONS(3311), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1652), 2, - sym_text_interpolation, - aux_sym_namespace_use_declaration_repeat1, - [58033] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1653), 1, - sym_text_interpolation, - STATE(1910), 1, - sym_formal_parameters, - STATE(2049), 1, - sym_reference_modifier, - [58055] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1503), 1, - sym_formal_parameters, - STATE(1654), 1, - sym_text_interpolation, - STATE(2088), 1, - sym_reference_modifier, - [58077] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(475), 1, - sym_declaration_list, - STATE(1655), 1, - sym_text_interpolation, - STATE(2046), 1, - sym_class_interface_clause, - [58099] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1516), 1, - sym_formal_parameters, - STATE(1656), 1, - sym_text_interpolation, - STATE(2209), 1, - sym_reference_modifier, - [58121] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1034), 1, - sym_compound_statement, - STATE(1657), 1, - sym_text_interpolation, - STATE(2069), 1, - sym__return_type, - [58143] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1632), 1, - aux_sym__const_declaration_repeat1, - STATE(1658), 1, - sym_text_interpolation, - ACTIONS(3316), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58163] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1659), 1, - sym_text_interpolation, - STATE(1696), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3318), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58183] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3287), 1, - anon_sym_LBRACE, - ACTIONS(3320), 1, - anon_sym_SEMI, - ACTIONS(3322), 1, - sym__automatic_semicolon, - STATE(1335), 1, - sym_compound_statement, - STATE(1660), 1, - sym_text_interpolation, - [58205] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1112), 1, - sym_compound_statement, - STATE(1661), 1, - sym_text_interpolation, - STATE(2296), 1, - sym__return_type, - [58227] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1662), 1, - sym_text_interpolation, - STATE(1668), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3316), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58247] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1663), 1, - sym_text_interpolation, - ACTIONS(3324), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [58263] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1664), 1, - sym_text_interpolation, - ACTIONS(1570), 4, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [58279] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_COMMA, - STATE(1665), 1, - sym_text_interpolation, - STATE(1699), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3326), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [58299] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3330), 1, - anon_sym_COMMA, - STATE(1666), 1, - sym_text_interpolation, - STATE(1713), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3328), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58319] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_COMMA, - STATE(1667), 1, - sym_text_interpolation, - STATE(1714), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3332), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58339] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3338), 1, - anon_sym_COMMA, - ACTIONS(3336), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1668), 2, - sym_text_interpolation, - aux_sym__const_declaration_repeat1, - [58357] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_COMMA, - STATE(1669), 1, - sym_text_interpolation, - STATE(1717), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3341), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58377] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1670), 1, - sym_text_interpolation, - STATE(1871), 1, - sym_formal_parameters, - STATE(2255), 1, - sym_reference_modifier, - [58399] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_COMMA, - STATE(1671), 1, - sym_text_interpolation, - STATE(1769), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3343), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58419] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(465), 1, - sym_declaration_list, - STATE(1672), 1, - sym_text_interpolation, - STATE(2078), 1, - sym_class_interface_clause, - [58441] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1673), 1, - sym_text_interpolation, - STATE(1725), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3345), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58461] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1674), 1, - sym_text_interpolation, - STATE(2325), 1, - sym_declare_directive, - ACTIONS(3301), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [58479] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(1675), 1, - sym_text_interpolation, - STATE(2224), 1, - sym_arguments, - ACTIONS(3014), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [58499] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(1676), 1, - sym_text_interpolation, - STATE(1909), 1, - sym_declaration_list, - STATE(2208), 1, - sym_base_clause, - [58521] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1677), 1, - sym_text_interpolation, - ACTIONS(3347), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [58537] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1678), 1, - sym_text_interpolation, - ACTIONS(2907), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [58553] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3291), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3293), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(3349), 1, - aux_sym_arrow_function_token1, - STATE(1679), 1, - sym_text_interpolation, - STATE(2466), 1, - sym_static_modifier, - [58575] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1500), 1, - sym_formal_parameters, - STATE(1680), 1, - sym_text_interpolation, - STATE(2293), 1, - sym_reference_modifier, - [58597] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1681), 1, - sym_text_interpolation, - STATE(1873), 1, - sym_formal_parameters, - STATE(2252), 1, - sym_reference_modifier, - [58619] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1682), 1, - sym_text_interpolation, - STATE(1850), 1, - sym_formal_parameters, - STATE(2279), 1, - sym_reference_modifier, - [58641] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1683), 1, - sym_text_interpolation, - ACTIONS(2755), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [58657] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1684), 1, - sym_text_interpolation, - ACTIONS(2943), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [58673] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3353), 1, - anon_sym_PIPE, - ACTIONS(3351), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - STATE(1685), 2, - sym_text_interpolation, - aux_sym_type_list_repeat1, - [58691] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3358), 1, - anon_sym_EQ, - STATE(1686), 1, - sym_text_interpolation, - ACTIONS(3356), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [58709] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1687), 1, - sym_text_interpolation, - STATE(1867), 1, - sym_formal_parameters, - STATE(2259), 1, - sym_reference_modifier, - [58731] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3274), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1688), 1, - sym_text_interpolation, - STATE(2071), 1, - sym_namespace_aliasing_clause, - ACTIONS(3360), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [58751] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1689), 1, - sym_text_interpolation, - ACTIONS(3362), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [58767] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1690), 1, - sym_text_interpolation, - STATE(1741), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3364), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58787] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1642), 1, - aux_sym__const_declaration_repeat1, - STATE(1691), 1, - sym_text_interpolation, - ACTIONS(3366), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58807] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1662), 1, - aux_sym__const_declaration_repeat1, - STATE(1692), 1, - sym_text_interpolation, - ACTIONS(3368), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58827] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3370), 1, - sym_integer, - STATE(1693), 1, - sym_text_interpolation, - STATE(2268), 1, - sym_string, - ACTIONS(297), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - [58847] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3287), 1, - anon_sym_LBRACE, - ACTIONS(3372), 1, - anon_sym_SEMI, - ACTIONS(3374), 1, - sym__automatic_semicolon, - STATE(1331), 1, - sym_compound_statement, - STATE(1694), 1, - sym_text_interpolation, - [58869] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3330), 1, - anon_sym_COMMA, - STATE(1695), 1, - sym_text_interpolation, - STATE(1771), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3376), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58889] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1696), 1, - sym_text_interpolation, - STATE(1708), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3378), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58909] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1697), 1, - sym_text_interpolation, - STATE(1708), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3380), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58929] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1697), 1, - aux_sym_property_declaration_repeat2, - STATE(1698), 1, - sym_text_interpolation, - ACTIONS(3382), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58949] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3384), 1, - anon_sym_COMMA, - ACTIONS(3024), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - STATE(1699), 2, - sym_text_interpolation, - aux_sym_base_clause_repeat1, - [58967] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3387), 1, - sym_integer, - STATE(1700), 1, - sym_text_interpolation, - STATE(2237), 1, - sym_string, - ACTIONS(297), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - [58987] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1039), 1, - sym_declaration_list, - STATE(1701), 1, - sym_text_interpolation, - STATE(2159), 1, - sym_class_interface_clause, - [59009] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1702), 1, - sym_text_interpolation, - STATE(2409), 1, - sym_declare_directive, - ACTIONS(3301), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [59027] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3391), 1, - anon_sym_PIPE, - STATE(1703), 1, - sym_text_interpolation, - STATE(1718), 1, - aux_sym_type_list_repeat1, - ACTIONS(3389), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [59047] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1704), 1, - sym_text_interpolation, - ACTIONS(3393), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [59063] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1705), 1, - sym_text_interpolation, - STATE(1924), 1, - sym_formal_parameters, - STATE(2163), 1, - sym_reference_modifier, - [59085] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1538), 1, - sym_formal_parameters, - STATE(1706), 1, - sym_text_interpolation, - STATE(2048), 1, - sym_reference_modifier, - [59107] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3395), 1, - anon_sym_EQ, - ACTIONS(3397), 1, - anon_sym_RPAREN, - STATE(1707), 1, - sym_text_interpolation, - STATE(1912), 1, - aux_sym__list_destructing_repeat1, - [59129] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3401), 1, - anon_sym_COMMA, - ACTIONS(3399), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1708), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat2, - [59147] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1069), 1, - sym_compound_statement, - STATE(1709), 1, - sym_text_interpolation, - STATE(2083), 1, - sym__return_type, - [59169] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3291), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3293), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(3404), 1, - aux_sym_arrow_function_token1, - STATE(1710), 1, - sym_text_interpolation, - STATE(2421), 1, - sym_static_modifier, - [59191] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1668), 1, - aux_sym__const_declaration_repeat1, - STATE(1711), 1, - sym_text_interpolation, - ACTIONS(3366), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59211] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1712), 1, - sym_text_interpolation, - ACTIONS(3024), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - [59227] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3330), 1, - anon_sym_COMMA, - STATE(1630), 1, - aux_sym_function_static_declaration_repeat1, - STATE(1713), 1, - sym_text_interpolation, - ACTIONS(3406), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59247] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_COMMA, - STATE(1635), 1, - aux_sym_global_declaration_repeat1, - STATE(1714), 1, - sym_text_interpolation, - ACTIONS(3408), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59267] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_COMMA, - STATE(1715), 1, - sym_text_interpolation, - STATE(1763), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3410), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59287] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1716), 1, - sym_text_interpolation, - ACTIONS(3393), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [59303] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_COMMA, - STATE(1652), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1717), 1, - sym_text_interpolation, - ACTIONS(3410), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59323] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3391), 1, - anon_sym_PIPE, - STATE(1685), 1, - aux_sym_type_list_repeat1, - STATE(1718), 1, - sym_text_interpolation, - ACTIONS(3412), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [59343] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1075), 1, - sym_declaration_list, - STATE(1719), 1, - sym_text_interpolation, - STATE(2152), 1, - sym_class_interface_clause, - [59365] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3303), 1, - sym__eof, - STATE(1720), 1, - sym_text_interpolation, - ACTIONS(3305), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [59383] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3287), 1, - anon_sym_LBRACE, - ACTIONS(3414), 1, - anon_sym_SEMI, - ACTIONS(3416), 1, - sym__automatic_semicolon, - STATE(1343), 1, - sym_compound_statement, - STATE(1721), 1, - sym_text_interpolation, - [59405] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1534), 1, - sym_formal_parameters, - STATE(1722), 1, - sym_text_interpolation, - STATE(2125), 1, - sym_reference_modifier, - [59427] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1636), 1, - aux_sym_property_declaration_repeat2, - STATE(1723), 1, - sym_text_interpolation, - ACTIONS(3418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59447] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(909), 1, - sym_compound_statement, - STATE(1724), 1, - sym_text_interpolation, - STATE(2050), 1, - sym__return_type, - [59469] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1668), 1, - aux_sym__const_declaration_repeat1, - STATE(1725), 1, - sym_text_interpolation, - ACTIONS(3420), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59489] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1528), 1, - sym_formal_parameters, - STATE(1726), 1, - sym_text_interpolation, - STATE(2098), 1, - sym_reference_modifier, - [59511] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1727), 1, - sym_text_interpolation, - STATE(1805), 1, - sym_formal_parameters, - STATE(2063), 1, - sym_reference_modifier, - [59533] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1728), 1, - sym_text_interpolation, - STATE(2502), 1, - sym_declare_directive, - ACTIONS(3301), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [59551] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2739), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2747), 1, - aux_sym_arrow_function_token1, - ACTIONS(3422), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1729), 1, - sym_text_interpolation, - STATE(2431), 1, - sym_static_modifier, - [59573] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1626), 1, - sym_declaration_list, - STATE(1730), 1, - sym_text_interpolation, - STATE(2100), 1, - sym_class_interface_clause, - [59595] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1731), 1, - sym_text_interpolation, - ACTIONS(3424), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [59611] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(912), 1, - sym_compound_statement, - STATE(1732), 1, - sym_text_interpolation, - STATE(2230), 1, - sym__return_type, - [59633] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1558), 1, - sym_declaration_list, - STATE(1733), 1, - sym_text_interpolation, - STATE(2244), 1, - sym_class_interface_clause, - [59655] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3123), 1, - anon_sym_LBRACE, - STATE(1734), 1, - sym_text_interpolation, - STATE(2012), 1, - sym_enum_declaration_list, - STATE(2246), 1, - sym_class_interface_clause, - [59677] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(906), 1, - sym_compound_statement, - STATE(1735), 1, - sym_text_interpolation, - STATE(2253), 1, - sym__return_type, - [59699] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(901), 1, - sym_compound_statement, - STATE(1736), 1, - sym_text_interpolation, - STATE(2254), 1, - sym__return_type, - [59721] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_COMMA, - STATE(1665), 1, - aux_sym_base_clause_repeat1, - STATE(1737), 1, - sym_text_interpolation, - ACTIONS(2989), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [59741] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1738), 1, - sym_text_interpolation, - STATE(1790), 1, - sym_formal_parameters, - STATE(2067), 1, - sym_reference_modifier, - [59763] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(892), 1, - sym_declaration_list, - STATE(1739), 1, - sym_text_interpolation, - STATE(2269), 1, - sym_class_interface_clause, - [59785] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(894), 1, - sym_declaration_list, - STATE(1740), 1, - sym_text_interpolation, - STATE(2091), 1, - sym_class_interface_clause, - [59807] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_COMMA, - STATE(1708), 1, - aux_sym_property_declaration_repeat2, - STATE(1741), 1, - sym_text_interpolation, - ACTIONS(3426), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59827] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1100), 1, - sym_declaration_list, - STATE(1742), 1, - sym_text_interpolation, - STATE(2115), 1, - sym_class_interface_clause, - [59849] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1096), 1, - sym_declaration_list, - STATE(1743), 1, - sym_text_interpolation, - STATE(2118), 1, - sym_class_interface_clause, - [59871] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1744), 1, - sym_text_interpolation, - ACTIONS(3171), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BSLASH, - anon_sym_LBRACE, - [59887] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1745), 1, - sym_text_interpolation, - ACTIONS(3171), 4, - anon_sym_COMMA, - anon_sym_BSLASH, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [59903] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1508), 1, - sym_formal_parameters, - STATE(1746), 1, - sym_text_interpolation, - STATE(2074), 1, - sym_reference_modifier, - [59925] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(879), 1, - sym_compound_statement, - STATE(1747), 1, - sym_text_interpolation, - STATE(2286), 1, - sym__return_type, - [59947] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3213), 1, - anon_sym_LBRACE, - STATE(551), 1, - sym_enum_declaration_list, - STATE(1748), 1, - sym_text_interpolation, - STATE(2229), 1, - sym_class_interface_clause, - [59969] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1527), 1, - sym_formal_parameters, - STATE(1749), 1, - sym_text_interpolation, - STATE(2084), 1, - sym_reference_modifier, - [59991] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1598), 1, - sym_declaration_list, - STATE(1750), 1, - sym_text_interpolation, - STATE(2299), 1, - sym_class_interface_clause, - [60013] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1751), 1, - sym_text_interpolation, - STATE(1814), 1, - sym_formal_parameters, - STATE(2086), 1, - sym_reference_modifier, - [60035] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(869), 1, - sym_compound_statement, - STATE(1752), 1, - sym_text_interpolation, - STATE(2300), 1, - sym__return_type, - [60057] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1753), 1, - sym_text_interpolation, - STATE(1778), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3420), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60077] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1754), 1, - sym_text_interpolation, - ACTIONS(2911), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [60093] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2885), 1, - aux_sym_base_clause_token1, - ACTIONS(3428), 1, - anon_sym_LBRACE, - STATE(540), 1, - sym_declaration_list, - STATE(1755), 1, - sym_text_interpolation, - STATE(2073), 1, - sym_base_clause, - [60115] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1711), 1, - aux_sym__const_declaration_repeat1, - STATE(1756), 1, - sym_text_interpolation, - ACTIONS(3430), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60135] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1757), 1, - sym_text_interpolation, - ACTIONS(3362), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [60151] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1758), 1, - sym_text_interpolation, - STATE(1818), 1, - sym_formal_parameters, - STATE(2149), 1, - sym_reference_modifier, - [60173] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1759), 1, - sym_text_interpolation, - STATE(1823), 1, - sym_formal_parameters, - STATE(2153), 1, - sym_reference_modifier, - [60195] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1760), 1, - sym_text_interpolation, - STATE(1825), 1, - sym_formal_parameters, - STATE(2154), 1, - sym_reference_modifier, - [60217] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1761), 1, - sym_text_interpolation, - ACTIONS(3432), 4, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_match_default_expression_token1, - aux_sym_switch_block_token1, - [60233] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(885), 1, - sym_compound_statement, - STATE(1762), 1, - sym_text_interpolation, - STATE(2167), 1, - sym__return_type, - [60255] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_COMMA, - STATE(1652), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1763), 1, - sym_text_interpolation, - ACTIONS(3434), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60275] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1764), 1, - sym_text_interpolation, - ACTIONS(3347), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [60291] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(889), 1, - sym_compound_statement, - STATE(1765), 1, - sym_text_interpolation, - STATE(2174), 1, - sym__return_type, - [60313] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_COMMA, - STATE(1652), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1766), 1, - sym_text_interpolation, - ACTIONS(3436), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60333] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_COMMA, - STATE(1651), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1767), 1, - sym_text_interpolation, - ACTIONS(3436), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60353] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3123), 1, - anon_sym_LBRACE, - STATE(1768), 1, - sym_text_interpolation, - STATE(1975), 1, - sym_enum_declaration_list, - STATE(2176), 1, - sym_class_interface_clause, - [60375] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_COMMA, - STATE(1635), 1, - aux_sym_global_declaration_repeat1, - STATE(1769), 1, - sym_text_interpolation, - ACTIONS(3438), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60395] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_COMMA, - STATE(1766), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1770), 1, - sym_text_interpolation, - ACTIONS(3440), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60415] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3330), 1, - anon_sym_COMMA, - STATE(1630), 1, - aux_sym_function_static_declaration_repeat1, - STATE(1771), 1, - sym_text_interpolation, - ACTIONS(3442), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60435] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1772), 1, - sym_text_interpolation, - STATE(1827), 1, - sym_formal_parameters, - STATE(2165), 1, - sym_reference_modifier, - [60457] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_declaration_list, - STATE(1773), 1, - sym_text_interpolation, - STATE(2186), 1, - sym_class_interface_clause, - [60479] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(861), 1, - sym_declaration_list, - STATE(1774), 1, - sym_text_interpolation, - STATE(2198), 1, - sym_class_interface_clause, - [60501] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1775), 1, - sym_text_interpolation, - ACTIONS(2955), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [60517] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1776), 1, - sym_text_interpolation, - ACTIONS(3299), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [60533] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2887), 1, - aux_sym_class_interface_clause_token1, - STATE(1599), 1, - sym_declaration_list, - STATE(1777), 1, - sym_text_interpolation, - STATE(2234), 1, - sym_class_interface_clause, - [60555] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3270), 1, - anon_sym_COMMA, - STATE(1668), 1, - aux_sym__const_declaration_repeat1, - STATE(1778), 1, - sym_text_interpolation, - ACTIONS(3444), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60575] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1726), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1779), 1, - sym_text_interpolation, - STATE(1902), 1, - sym_formal_parameters, - STATE(2183), 1, - sym_reference_modifier, - [60597] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1089), 1, - sym_compound_statement, - STATE(1780), 1, - sym_text_interpolation, - STATE(2267), 1, - sym__return_type, - [60619] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1131), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1781), 1, - sym_text_interpolation, - ACTIONS(1129), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [60636] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1211), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1782), 1, - sym_text_interpolation, - ACTIONS(1209), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [60653] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3446), 1, - anon_sym_COMMA, - ACTIONS(3449), 1, - anon_sym_RPAREN, - STATE(1783), 2, - sym_text_interpolation, - aux_sym_arguments_repeat1, - [60670] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(299), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - STATE(1784), 1, - sym_text_interpolation, - STATE(1671), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60687] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3451), 1, - anon_sym_COMMA, - ACTIONS(3453), 1, - anon_sym_RBRACE, - STATE(1785), 1, - sym_text_interpolation, - STATE(1828), 1, - aux_sym_match_block_repeat1, - [60706] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3455), 1, - anon_sym_EQ_GT, - STATE(1786), 1, - sym_text_interpolation, - STATE(2344), 1, - sym__return_type, - [60725] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3457), 1, - anon_sym_COMMA, - ACTIONS(3459), 1, - anon_sym_RBRACE, - STATE(1787), 1, - sym_text_interpolation, - STATE(1832), 1, - aux_sym_namespace_use_group_repeat1, - [60744] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3463), 1, - anon_sym_EQ, - STATE(1788), 1, - sym_text_interpolation, - ACTIONS(3461), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60761] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3076), 1, - anon_sym_RPAREN, - ACTIONS(3465), 1, - anon_sym_COMMA, - STATE(1789), 1, - sym_text_interpolation, - STATE(1833), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [60780] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3467), 1, - anon_sym_EQ_GT, - STATE(1790), 1, - sym_text_interpolation, - STATE(2403), 1, - sym__return_type, - [60799] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_RPAREN, - ACTIONS(3469), 1, - anon_sym_COMMA, - STATE(1791), 1, - sym_text_interpolation, - STATE(1856), 1, - aux_sym_formal_parameters_repeat1, - [60818] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_DOLLAR, - STATE(1564), 1, - sym_variable_name, - STATE(1723), 1, - sym_property_element, - STATE(1792), 1, - sym_text_interpolation, - [60837] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_DOLLAR, - STATE(1564), 1, - sym_variable_name, - STATE(1793), 1, - sym_text_interpolation, - STATE(1834), 1, - sym_property_element, - [60856] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1794), 1, - sym_text_interpolation, - ACTIONS(3471), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [60871] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1795), 1, - sym_text_interpolation, - ACTIONS(3473), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [60886] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(770), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3475), 1, - anon_sym_COMMA, - STATE(1783), 1, - aux_sym_arguments_repeat1, - STATE(1796), 1, - sym_text_interpolation, - [60905] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1797), 1, - sym_text_interpolation, - ACTIONS(3024), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [60920] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3479), 1, - anon_sym_EQ, - STATE(1798), 1, - sym_text_interpolation, - ACTIONS(3477), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60937] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3481), 1, - anon_sym_EQ_GT, - STATE(1799), 1, - sym_text_interpolation, - STATE(2330), 1, - sym__return_type, - [60956] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1800), 1, - sym_text_interpolation, - ACTIONS(3483), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [60971] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3485), 1, - anon_sym_COMMA, - STATE(1801), 1, - sym_text_interpolation, - STATE(1804), 1, - aux_sym_array_creation_expression_repeat1, - [60990] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_RPAREN, - STATE(1802), 1, - sym_text_interpolation, - STATE(1815), 1, - aux_sym__list_destructing_repeat1, - [61009] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3487), 1, - anon_sym_RPAREN, - STATE(1803), 1, - sym_text_interpolation, - STATE(1840), 1, - aux_sym__list_destructing_repeat1, - [61028] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3489), 1, - anon_sym_COMMA, - ACTIONS(3492), 1, - anon_sym_RPAREN, - STATE(1804), 2, - sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [61045] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3494), 1, - anon_sym_EQ_GT, - STATE(1805), 1, - sym_text_interpolation, - STATE(2454), 1, - sym__return_type, - [61064] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3498), 1, - aux_sym_else_clause_token1, - STATE(1806), 1, - sym_text_interpolation, - ACTIONS(3496), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [61081] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2226), 1, - anon_sym_COMMA, - ACTIONS(3500), 1, - anon_sym_EQ_GT, - STATE(1807), 1, - sym_text_interpolation, - STATE(1810), 1, - aux_sym_match_condition_list_repeat1, - [61100] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(801), 1, - anon_sym_RBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3502), 1, - anon_sym_COMMA, - STATE(1808), 1, - sym_text_interpolation, - STATE(1809), 1, - aux_sym_match_block_repeat1, - [61119] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3504), 1, - anon_sym_COMMA, - ACTIONS(3507), 1, - anon_sym_RBRACE, - STATE(1809), 2, - sym_text_interpolation, - aux_sym_match_block_repeat1, - [61136] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(3509), 1, - anon_sym_COMMA, - STATE(1810), 2, - sym_text_interpolation, - aux_sym_match_condition_list_repeat1, - [61153] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_EQ_GT, - STATE(1811), 1, - sym_text_interpolation, - STATE(2302), 1, - sym__return_type, - [61172] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1812), 1, - sym_text_interpolation, - ACTIONS(3514), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [61187] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3516), 1, - anon_sym_COMMA, - ACTIONS(3518), 1, - anon_sym_RPAREN, - STATE(1796), 1, - aux_sym_arguments_repeat1, - STATE(1813), 1, - sym_text_interpolation, - [61206] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3520), 1, - anon_sym_EQ_GT, - STATE(1814), 1, - sym_text_interpolation, - STATE(2303), 1, - sym__return_type, - [61225] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3522), 1, - anon_sym_RPAREN, - STATE(1815), 1, - sym_text_interpolation, - STATE(1907), 1, - aux_sym__list_destructing_repeat1, - [61244] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1816), 1, - sym_text_interpolation, - ACTIONS(3524), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [61259] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - STATE(1817), 1, - sym_text_interpolation, - STATE(2381), 1, - sym__return_type, - [61278] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3528), 1, - anon_sym_EQ_GT, - STATE(1818), 1, - sym_text_interpolation, - STATE(2380), 1, - sym__return_type, - [61297] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3532), 1, - anon_sym_RBRACK, - STATE(1819), 1, - sym_text_interpolation, - STATE(1885), 1, - aux_sym_attribute_list_repeat1, - [61316] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3534), 1, - anon_sym_EQ_GT, - STATE(1820), 1, - sym_text_interpolation, - STATE(2378), 1, - sym__return_type, - [61335] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3536), 1, - anon_sym_EQ_GT, - STATE(1821), 1, - sym_text_interpolation, - STATE(2377), 1, - sym__return_type, - [61354] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3538), 1, - anon_sym_RBRACK, - STATE(1822), 1, - sym_text_interpolation, - STATE(1885), 1, - aux_sym_attribute_list_repeat1, - [61373] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3540), 1, - anon_sym_EQ_GT, - STATE(1823), 1, - sym_text_interpolation, - STATE(2375), 1, - sym__return_type, - [61392] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(774), 1, - anon_sym_RBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3542), 1, - anon_sym_COMMA, - STATE(1824), 1, - sym_text_interpolation, - STATE(1843), 1, - aux_sym_array_creation_expression_repeat1, - [61411] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3544), 1, - anon_sym_EQ_GT, - STATE(1825), 1, - sym_text_interpolation, - STATE(2373), 1, - sym__return_type, - [61430] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3546), 1, - anon_sym_EQ_GT, - STATE(1826), 1, - sym_text_interpolation, - STATE(2371), 1, - sym__return_type, - [61449] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3548), 1, - anon_sym_EQ_GT, - STATE(1827), 1, - sym_text_interpolation, - STATE(2366), 1, - sym__return_type, - [61468] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(803), 1, - anon_sym_RBRACE, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3550), 1, - anon_sym_COMMA, - STATE(1809), 1, - aux_sym_match_block_repeat1, - STATE(1828), 1, - sym_text_interpolation, - [61487] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3552), 1, - anon_sym_RPAREN, - STATE(1829), 1, - sym_text_interpolation, - STATE(2446), 1, - sym_variable_name, - [61506] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2799), 1, - anon_sym_RPAREN, - ACTIONS(3554), 1, - anon_sym_COMMA, - STATE(1830), 2, - sym_text_interpolation, - aux_sym_unset_statement_repeat1, - [61523] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(3557), 1, - anon_sym_LBRACE, - STATE(1699), 1, - aux_sym_base_clause_repeat1, - STATE(1831), 1, - sym_text_interpolation, - [61542] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_COMMA, - ACTIONS(3562), 1, - anon_sym_RBRACE, - STATE(1832), 2, - sym_text_interpolation, - aux_sym_namespace_use_group_repeat1, - [61559] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3564), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_RPAREN, - STATE(1833), 2, - sym_text_interpolation, - aux_sym_anonymous_function_use_clause_repeat1, - [61576] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1834), 1, - sym_text_interpolation, - ACTIONS(3399), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [61591] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1835), 1, - sym_text_interpolation, - ACTIONS(3351), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - [61606] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3571), 1, - anon_sym_EQ, - STATE(1836), 1, - sym_text_interpolation, - ACTIONS(3569), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61623] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_DOLLAR, - STATE(1564), 1, - sym_variable_name, - STATE(1698), 1, - sym_property_element, - STATE(1837), 1, - sym_text_interpolation, - [61642] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1838), 1, - sym_text_interpolation, - ACTIONS(3573), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [61657] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1839), 1, - sym_text_interpolation, - ACTIONS(3575), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [61672] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3577), 1, - anon_sym_RPAREN, - STATE(1840), 1, - sym_text_interpolation, - STATE(1907), 1, - aux_sym__list_destructing_repeat1, - [61691] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3579), 1, - anon_sym_COMMA, - ACTIONS(3581), 1, - anon_sym_RPAREN, - STATE(1801), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1841), 1, - sym_text_interpolation, - [61710] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3583), 1, - anon_sym_COMMA, - ACTIONS(3585), 1, - anon_sym_RPAREN, - STATE(1789), 1, - aux_sym_anonymous_function_use_clause_repeat1, - STATE(1842), 1, - sym_text_interpolation, - [61729] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3492), 1, - anon_sym_RBRACK, - ACTIONS(3587), 1, - anon_sym_COMMA, - STATE(1843), 2, - sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [61746] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3129), 1, - anon_sym_BSLASH, - ACTIONS(3590), 1, - sym_name, - STATE(1844), 1, - sym_text_interpolation, - STATE(2308), 1, - sym_namespace_name, - [61765] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3592), 1, - sym_name, - STATE(1845), 1, - sym_text_interpolation, - ACTIONS(3594), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61782] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3598), 1, - anon_sym_EQ, - STATE(1846), 1, - sym_text_interpolation, - ACTIONS(3596), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61799] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3600), 1, - anon_sym_DOT_DOT_DOT, - STATE(1788), 1, - sym_variable_name, - STATE(1847), 1, - sym_text_interpolation, - [61818] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3602), 1, - anon_sym_EQ_GT, - STATE(1848), 1, - sym_text_interpolation, - STATE(2329), 1, - sym__return_type, - [61837] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3606), 1, - anon_sym_EQ, - STATE(1849), 1, - sym_text_interpolation, - ACTIONS(3604), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61854] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3608), 1, - anon_sym_EQ_GT, - STATE(1850), 1, - sym_text_interpolation, - STATE(2469), 1, - sym__return_type, - [61873] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3612), 1, - anon_sym_EQ, - STATE(1851), 1, - sym_text_interpolation, - ACTIONS(3610), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61890] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1111), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1852), 1, - sym_text_interpolation, - ACTIONS(1109), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [61907] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1853), 1, - sym_text_interpolation, - ACTIONS(2551), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - sym_name, - [61922] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3614), 1, - anon_sym_COMMA, - ACTIONS(3617), 1, - anon_sym_RBRACK, - STATE(1854), 2, - sym_text_interpolation, - aux_sym__array_destructing_repeat1, - [61939] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(768), 1, - anon_sym_RBRACK, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3619), 1, - anon_sym_COMMA, - STATE(1843), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1855), 1, - sym_text_interpolation, - [61958] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3621), 1, - anon_sym_COMMA, - ACTIONS(3624), 1, - anon_sym_RPAREN, - STATE(1856), 2, - sym_text_interpolation, - aux_sym_formal_parameters_repeat1, - [61975] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_COMMA, - ACTIONS(3628), 1, - anon_sym_RBRACK, - STATE(1854), 1, - aux_sym__array_destructing_repeat1, - STATE(1857), 1, - sym_text_interpolation, - [61994] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3632), 1, - anon_sym_EQ, - STATE(1858), 1, - sym_text_interpolation, - ACTIONS(3630), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62011] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3457), 1, - anon_sym_COMMA, - ACTIONS(3634), 1, - anon_sym_RBRACE, - STATE(1787), 1, - aux_sym_namespace_use_group_repeat1, - STATE(1859), 1, - sym_text_interpolation, - [62030] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3636), 1, - sym_name, - ACTIONS(3638), 1, - anon_sym_LBRACE, - STATE(1860), 1, - sym_text_interpolation, - STATE(2070), 1, - sym_namespace_use_group, - [62049] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1079), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1861), 1, - sym_text_interpolation, - ACTIONS(1077), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62066] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1363), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1862), 1, - sym_text_interpolation, - ACTIONS(1361), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62083] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3640), 1, - anon_sym_LBRACE, - ACTIONS(3642), 1, - anon_sym_COLON, - STATE(533), 1, - sym_switch_block, - STATE(1863), 1, - sym_text_interpolation, - [62102] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3644), 1, - anon_sym_EQ_GT, - STATE(1864), 1, - sym_text_interpolation, - STATE(2485), 1, - sym__return_type, - [62121] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1075), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1865), 1, - sym_text_interpolation, - ACTIONS(1073), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62138] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3646), 1, - anon_sym_EQ_GT, - STATE(1866), 1, - sym_text_interpolation, - STATE(2331), 1, - sym__return_type, - [62157] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3648), 1, - anon_sym_EQ_GT, - STATE(1867), 1, - sym_text_interpolation, - STATE(2332), 1, - sym__return_type, - [62176] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3650), 1, - anon_sym_EQ_GT, - STATE(1868), 1, - sym_text_interpolation, - STATE(2333), 1, - sym__return_type, - [62195] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3652), 1, - anon_sym_EQ_GT, - STATE(1869), 1, - sym_text_interpolation, - STATE(2457), 1, - sym__return_type, - [62214] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3654), 1, - anon_sym_EQ_GT, - STATE(1870), 1, - sym_text_interpolation, - STATE(2334), 1, - sym__return_type, - [62233] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3656), 1, - anon_sym_EQ_GT, - STATE(1871), 1, - sym_text_interpolation, - STATE(2335), 1, - sym__return_type, - [62252] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1127), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1872), 1, - sym_text_interpolation, - ACTIONS(1125), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62269] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3658), 1, - anon_sym_EQ_GT, - STATE(1873), 1, - sym_text_interpolation, - STATE(2336), 1, - sym__return_type, - [62288] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3660), 1, - anon_sym_EQ_GT, - STATE(1874), 1, - sym_text_interpolation, - STATE(2337), 1, - sym__return_type, - [62307] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1147), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1875), 1, - sym_text_interpolation, - ACTIONS(1145), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62324] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3662), 1, - anon_sym_EQ_GT, - STATE(1876), 1, - sym_text_interpolation, - STATE(2339), 1, - sym__return_type, - [62343] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3664), 1, - anon_sym_EQ_GT, - STATE(1877), 1, - sym_text_interpolation, - STATE(2491), 1, - sym__return_type, - [62362] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1355), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1878), 1, - sym_text_interpolation, - ACTIONS(1353), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62379] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3666), 1, - anon_sym_EQ_GT, - STATE(1879), 1, - sym_text_interpolation, - STATE(2505), 1, - sym__return_type, - [62398] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1383), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1880), 1, - sym_text_interpolation, - ACTIONS(1381), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62415] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1067), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1881), 1, - sym_text_interpolation, - ACTIONS(1065), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62432] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(760), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3668), 1, - anon_sym_COMMA, - STATE(1783), 1, - aux_sym_arguments_repeat1, - STATE(1882), 1, - sym_text_interpolation, - [62451] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3670), 1, - anon_sym_COMMA, - ACTIONS(3672), 1, - anon_sym_RPAREN, - STATE(1791), 1, - aux_sym_formal_parameters_repeat1, - STATE(1883), 1, - sym_text_interpolation, - [62470] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3395), 1, - anon_sym_EQ, - STATE(1884), 1, - sym_text_interpolation, - ACTIONS(3674), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [62487] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3676), 1, - anon_sym_COMMA, - ACTIONS(3679), 1, - anon_sym_RBRACK, - STATE(1885), 2, - sym_text_interpolation, - aux_sym_attribute_list_repeat1, - [62504] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1537), 1, - anon_sym_RPAREN, - STATE(1886), 1, - sym_text_interpolation, - STATE(1907), 1, - aux_sym__list_destructing_repeat1, - [62523] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1537), 1, - anon_sym_RPAREN, - STATE(1887), 1, - sym_text_interpolation, - STATE(1914), 1, - aux_sym__list_destructing_repeat1, - [62542] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_COMMA, - ACTIONS(3681), 1, - anon_sym_RBRACK, - STATE(1857), 1, - aux_sym__array_destructing_repeat1, - STATE(1888), 1, - sym_text_interpolation, - [62561] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3683), 1, - anon_sym_COMMA, - ACTIONS(3685), 1, - anon_sym_RPAREN, - STATE(1882), 1, - aux_sym_arguments_repeat1, - STATE(1889), 1, - sym_text_interpolation, - [62580] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1890), 1, - sym_text_interpolation, - ACTIONS(3687), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [62595] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1891), 1, - sym_text_interpolation, - ACTIONS(3492), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [62610] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3395), 1, - anon_sym_EQ, - STATE(1892), 1, - sym_text_interpolation, - ACTIONS(3689), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [62627] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3691), 1, - anon_sym_COMMA, - ACTIONS(3693), 1, - anon_sym_RBRACK, - STATE(1855), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1893), 1, - sym_text_interpolation, - [62646] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1091), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1894), 1, - sym_text_interpolation, - ACTIONS(1089), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62663] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3695), 1, - anon_sym_RBRACK, - STATE(1819), 1, - aux_sym_attribute_list_repeat1, - STATE(1895), 1, - sym_text_interpolation, - [62682] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_COMMA, - ACTIONS(3681), 1, - anon_sym_RBRACK, - STATE(1854), 1, - aux_sym__array_destructing_repeat1, - STATE(1896), 1, - sym_text_interpolation, - [62701] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1139), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1897), 1, - sym_text_interpolation, - ACTIONS(1137), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62718] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3697), 1, - anon_sym_COMMA, - ACTIONS(3699), 1, - anon_sym_RBRACK, - STATE(1824), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1898), 1, - sym_text_interpolation, - [62737] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1175), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1899), 1, - sym_text_interpolation, - ACTIONS(1173), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62754] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1179), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1900), 1, - sym_text_interpolation, - ACTIONS(1177), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62771] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1207), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1901), 1, - sym_text_interpolation, - ACTIONS(1205), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62788] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3701), 1, - anon_sym_EQ_GT, - STATE(1902), 1, - sym_text_interpolation, - STATE(2347), 1, - sym__return_type, - [62807] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3703), 1, - anon_sym_LBRACE, - ACTIONS(3705), 1, - anon_sym_COLON, - STATE(1903), 1, - sym_text_interpolation, - STATE(1923), 1, - sym_switch_block, - [62826] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3707), 1, - anon_sym_RBRACK, - STATE(1822), 1, - aux_sym_attribute_list_repeat1, - STATE(1904), 1, - sym_text_interpolation, - [62845] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1905), 1, - sym_text_interpolation, - ACTIONS(3016), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [62860] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1303), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1906), 1, - sym_text_interpolation, - ACTIONS(1301), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62877] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1552), 1, - anon_sym_RPAREN, - ACTIONS(3709), 1, - anon_sym_COMMA, - STATE(1907), 2, - sym_text_interpolation, - aux_sym__list_destructing_repeat1, - [62894] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1379), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1908), 1, - sym_text_interpolation, - ACTIONS(1377), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62911] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1283), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1909), 1, - sym_text_interpolation, - ACTIONS(1281), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62928] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3712), 1, - anon_sym_EQ_GT, - STATE(1910), 1, - sym_text_interpolation, - STATE(2322), 1, - sym__return_type, - [62947] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1275), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1911), 1, - sym_text_interpolation, - ACTIONS(1273), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62964] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3714), 1, - anon_sym_RPAREN, - STATE(1907), 1, - aux_sym__list_destructing_repeat1, - STATE(1912), 1, - sym_text_interpolation, - [62983] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1913), 1, - sym_text_interpolation, - ACTIONS(3716), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [62998] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3718), 1, - anon_sym_RPAREN, - STATE(1907), 1, - aux_sym__list_destructing_repeat1, - STATE(1914), 1, - sym_text_interpolation, - [63017] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1915), 1, - sym_text_interpolation, - ACTIONS(3720), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [63032] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1071), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1916), 1, - sym_text_interpolation, - ACTIONS(1069), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63049] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1087), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1917), 1, - sym_text_interpolation, - ACTIONS(1085), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63066] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_COMMA, - ACTIONS(3724), 1, - anon_sym_RPAREN, - STATE(1918), 1, - sym_text_interpolation, - STATE(1926), 1, - aux_sym_arguments_repeat1, - [63085] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1247), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1919), 1, - sym_text_interpolation, - ACTIONS(1245), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63102] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1347), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1920), 1, - sym_text_interpolation, - ACTIONS(1345), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63119] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1123), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1921), 1, - sym_text_interpolation, - ACTIONS(1121), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63136] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1267), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1922), 1, - sym_text_interpolation, - ACTIONS(1265), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63153] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1263), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1923), 1, - sym_text_interpolation, - ACTIONS(1261), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63170] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3726), 1, - anon_sym_EQ_GT, - STATE(1924), 1, - sym_text_interpolation, - STATE(2340), 1, - sym__return_type, - [63189] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3395), 1, - anon_sym_EQ, - STATE(1925), 1, - sym_text_interpolation, - ACTIONS(3728), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [63206] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(782), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3730), 1, - anon_sym_COMMA, - STATE(1783), 1, - aux_sym_arguments_repeat1, - STATE(1926), 1, - sym_text_interpolation, - [63225] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3732), 1, - anon_sym_COMMA, - ACTIONS(3734), 1, - anon_sym_RBRACE, - STATE(1808), 1, - aux_sym_match_block_repeat1, - STATE(1927), 1, - sym_text_interpolation, - [63244] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3738), 1, - aux_sym_else_clause_token1, - STATE(1928), 1, - sym_text_interpolation, - ACTIONS(3736), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [63261] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1929), 1, - sym_text_interpolation, - ACTIONS(3263), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [63276] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1083), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1930), 1, - sym_text_interpolation, - ACTIONS(1081), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63293] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1107), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1931), 1, - sym_text_interpolation, - ACTIONS(1105), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63310] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1119), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1932), 1, - sym_text_interpolation, - ACTIONS(1117), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63327] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1135), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1933), 1, - sym_text_interpolation, - ACTIONS(1133), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63344] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1934), 1, - sym_text_interpolation, - ACTIONS(3740), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [63359] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1259), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1935), 1, - sym_text_interpolation, - ACTIONS(1257), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63376] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1315), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1936), 1, - sym_text_interpolation, - ACTIONS(1313), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63393] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1937), 1, - sym_text_interpolation, - ACTIONS(3276), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [63408] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1319), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1938), 1, - sym_text_interpolation, - ACTIONS(1317), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63425] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1351), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1939), 1, - sym_text_interpolation, - ACTIONS(1349), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63442] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_LBRACE, - ACTIONS(3742), 1, - sym_name, - STATE(1940), 1, - sym_text_interpolation, - STATE(2256), 1, - sym_namespace_use_group, - [63461] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3636), 1, - sym_name, - ACTIONS(3638), 1, - anon_sym_LBRACE, - STATE(1941), 1, - sym_text_interpolation, - STATE(2256), 1, - sym_namespace_use_group, - [63480] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1942), 1, - sym_text_interpolation, - ACTIONS(3744), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [63495] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1943), 1, - sym_text_interpolation, - ACTIONS(3311), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [63510] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1059), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1944), 1, - sym_text_interpolation, - ACTIONS(1057), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63527] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_DOLLAR, - STATE(1686), 1, - sym_variable_name, - STATE(1929), 1, - sym_static_variable_declaration, - STATE(1945), 1, - sym_text_interpolation, - [63546] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(299), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - STATE(1946), 1, - sym_text_interpolation, - STATE(1937), 2, - sym_dynamic_variable_name, - sym_variable_name, - [63563] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1947), 1, - sym_text_interpolation, - ACTIONS(3746), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [63578] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3748), 1, - anon_sym_COMMA, - ACTIONS(3750), 1, - anon_sym_RPAREN, - STATE(1948), 1, - sym_text_interpolation, - STATE(1962), 1, - aux_sym_array_creation_expression_repeat1, - [63597] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3754), 1, - anon_sym_EQ, - STATE(1949), 1, - sym_text_interpolation, - ACTIONS(3752), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [63614] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_LBRACE, - ACTIONS(3742), 1, - sym_name, - STATE(1950), 1, - sym_text_interpolation, - STATE(2131), 1, - sym_namespace_use_group, - [63633] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1951), 1, - sym_text_interpolation, - ACTIONS(3756), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [63648] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3760), 1, - anon_sym_EQ, - STATE(1952), 1, - sym_text_interpolation, - ACTIONS(3758), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [63665] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1760), 1, - anon_sym_RPAREN, - ACTIONS(3762), 1, - anon_sym_COMMA, - STATE(1856), 1, - aux_sym_formal_parameters_repeat1, - STATE(1953), 1, - sym_text_interpolation, - [63684] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1327), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1954), 1, - sym_text_interpolation, - ACTIONS(1325), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63701] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3764), 1, - anon_sym_DOT_DOT_DOT, - STATE(1851), 1, - sym_variable_name, - STATE(1955), 1, - sym_text_interpolation, - [63720] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3768), 1, - anon_sym_EQ, - STATE(1956), 1, - sym_text_interpolation, - ACTIONS(3766), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [63737] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1287), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1957), 1, - sym_text_interpolation, - ACTIONS(1285), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63754] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3770), 1, - anon_sym_COMMA, - ACTIONS(3772), 1, - anon_sym_RPAREN, - STATE(1958), 1, - sym_text_interpolation, - STATE(1964), 1, - aux_sym_arguments_repeat1, - [63773] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_COMMA, - ACTIONS(3774), 1, - anon_sym_RPAREN, - STATE(1830), 1, - aux_sym_unset_statement_repeat1, - STATE(1959), 1, - sym_text_interpolation, - [63792] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3776), 1, - anon_sym_DOT_DOT_DOT, - STATE(1849), 1, - sym_variable_name, - STATE(1960), 1, - sym_text_interpolation, - [63811] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3778), 1, - anon_sym_DOT_DOT_DOT, - STATE(1949), 1, - sym_variable_name, - STATE(1961), 1, - sym_text_interpolation, - [63830] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(784), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3780), 1, - anon_sym_COMMA, - STATE(1804), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1962), 1, - sym_text_interpolation, - [63849] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - ACTIONS(3782), 1, - anon_sym_RPAREN, - STATE(1963), 1, - sym_text_interpolation, - STATE(2460), 1, - sym_variable_name, - [63868] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(752), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_COMMA, - STATE(1783), 1, - aux_sym_arguments_repeat1, - STATE(1964), 1, - sym_text_interpolation, - [63887] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3261), 1, - anon_sym_LBRACE, - STATE(1965), 1, - sym_text_interpolation, - STATE(2304), 1, - sym__return_type, - [63906] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3786), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RPAREN, - STATE(1953), 1, - aux_sym_formal_parameters_repeat1, - STATE(1966), 1, - sym_text_interpolation, - [63925] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3790), 1, - anon_sym_EQ_GT, - STATE(1967), 1, - sym_text_interpolation, - STATE(2475), 1, - sym__return_type, - [63944] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3636), 1, - sym_name, - ACTIONS(3638), 1, - anon_sym_LBRACE, - STATE(1968), 1, - sym_text_interpolation, - STATE(2278), 1, - sym_namespace_use_group, - [63963] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1359), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1969), 1, - sym_text_interpolation, - ACTIONS(1357), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63980] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1395), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1970), 1, - sym_text_interpolation, - ACTIONS(1393), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [63997] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1971), 1, - sym_text_interpolation, - ACTIONS(3792), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [64012] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(1972), 1, - sym_text_interpolation, - ACTIONS(3336), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [64027] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1155), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1973), 1, - sym_text_interpolation, - ACTIONS(1153), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64044] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1335), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1974), 1, - sym_text_interpolation, - ACTIONS(1333), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64061] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1323), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1975), 1, - sym_text_interpolation, - ACTIONS(1321), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64078] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1159), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1976), 1, - sym_text_interpolation, - ACTIONS(1157), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64095] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1183), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1977), 1, - sym_text_interpolation, - ACTIONS(1181), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64112] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1191), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1978), 1, - sym_text_interpolation, - ACTIONS(1189), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64129] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1219), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1979), 1, - sym_text_interpolation, - ACTIONS(1217), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64146] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_COMMA, - ACTIONS(3794), 1, - anon_sym_RPAREN, - STATE(1830), 1, - aux_sym_unset_statement_repeat1, - STATE(1980), 1, - sym_text_interpolation, - [64165] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3796), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, - anon_sym_RPAREN, - STATE(1981), 1, - sym_text_interpolation, - STATE(1983), 1, - aux_sym_arguments_repeat1, - [64184] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1219), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1982), 1, - sym_text_interpolation, - ACTIONS(1217), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64201] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(780), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3800), 1, - anon_sym_COMMA, - STATE(1783), 1, - aux_sym_arguments_repeat1, - STATE(1983), 1, - sym_text_interpolation, - [64220] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1243), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1984), 1, - sym_text_interpolation, - ACTIONS(1241), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64237] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1279), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1985), 1, - sym_text_interpolation, - ACTIONS(1277), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64254] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1279), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1986), 1, - sym_text_interpolation, - ACTIONS(1277), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64271] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1299), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1987), 1, - sym_text_interpolation, - ACTIONS(1297), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64288] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1339), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1988), 1, - sym_text_interpolation, - ACTIONS(1337), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64305] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1295), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1989), 1, - sym_text_interpolation, - ACTIONS(1293), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64322] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(3217), 1, - anon_sym_LBRACE, - STATE(1831), 1, - aux_sym_base_clause_repeat1, - STATE(1990), 1, - sym_text_interpolation, - [64341] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1063), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1991), 1, - sym_text_interpolation, - ACTIONS(1061), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64358] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1371), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1992), 1, - sym_text_interpolation, - ACTIONS(1369), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64375] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3636), 1, - sym_name, - ACTIONS(3638), 1, - anon_sym_LBRACE, - STATE(1993), 1, - sym_text_interpolation, - STATE(2172), 1, - sym_namespace_use_group, - [64394] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3802), 1, - anon_sym_COMMA, - ACTIONS(3804), 1, - anon_sym_RPAREN, - STATE(1994), 1, - sym_text_interpolation, - STATE(1996), 1, - aux_sym_arguments_repeat1, - [64413] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1375), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1995), 1, - sym_text_interpolation, - ACTIONS(1373), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64430] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3806), 1, - anon_sym_COMMA, - STATE(1783), 1, - aux_sym_arguments_repeat1, - STATE(1996), 1, - sym_text_interpolation, - [64449] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1387), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1997), 1, - sym_text_interpolation, - ACTIONS(1385), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64466] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1387), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1998), 1, - sym_text_interpolation, - ACTIONS(1385), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64483] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1399), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(1999), 1, - sym_text_interpolation, - ACTIONS(1397), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64500] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1391), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2000), 1, - sym_text_interpolation, - ACTIONS(1389), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64517] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_LBRACE, - ACTIONS(3742), 1, - sym_name, - STATE(2001), 1, - sym_text_interpolation, - STATE(2172), 1, - sym_namespace_use_group, - [64536] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1391), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2002), 1, - sym_text_interpolation, - ACTIONS(1389), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64553] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1367), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2003), 1, - sym_text_interpolation, - ACTIONS(1365), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64570] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1367), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2004), 1, - sym_text_interpolation, - ACTIONS(1365), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64587] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1271), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2005), 1, - sym_text_interpolation, - ACTIONS(1269), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64604] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1343), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2006), 1, - sym_text_interpolation, - ACTIONS(1341), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64621] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1311), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2007), 1, - sym_text_interpolation, - ACTIONS(1309), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64638] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1291), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2008), 1, - sym_text_interpolation, - ACTIONS(1289), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64655] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1251), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2009), 1, - sym_text_interpolation, - ACTIONS(1249), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64672] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3810), 1, - anon_sym_EQ, - STATE(2010), 1, - sym_text_interpolation, - ACTIONS(3808), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64689] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(299), 1, - anon_sym_DOLLAR, - ACTIONS(1413), 1, - sym_comment, - STATE(2011), 1, - sym_text_interpolation, - STATE(1667), 2, - sym_dynamic_variable_name, - sym_variable_name, - [64706] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1255), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2012), 1, - sym_text_interpolation, - ACTIONS(1253), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64723] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1331), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2013), 1, - sym_text_interpolation, - ACTIONS(1329), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64740] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1251), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2014), 1, - sym_text_interpolation, - ACTIONS(1249), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64757] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_EQ, - STATE(2015), 1, - sym_text_interpolation, - ACTIONS(3812), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [64774] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1235), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2016), 1, - sym_text_interpolation, - ACTIONS(1233), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64791] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(3131), 1, - anon_sym_LBRACE, - STATE(2017), 1, - sym_text_interpolation, - STATE(2464), 1, - sym__return_type, - [64810] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1215), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2018), 1, - sym_text_interpolation, - ACTIONS(1213), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64827] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1187), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2019), 1, - sym_text_interpolation, - ACTIONS(1185), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64844] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1231), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2020), 1, - sym_text_interpolation, - ACTIONS(1229), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64861] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1167), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2021), 1, - sym_text_interpolation, - ACTIONS(1165), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64878] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1203), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2022), 1, - sym_text_interpolation, - ACTIONS(1201), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64895] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1199), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2023), 1, - sym_text_interpolation, - ACTIONS(1197), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64912] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1195), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2024), 1, - sym_text_interpolation, - ACTIONS(1193), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64929] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1143), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2025), 1, - sym_text_interpolation, - ACTIONS(1141), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64946] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1223), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2026), 1, - sym_text_interpolation, - ACTIONS(1221), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64963] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1167), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2027), 1, - sym_text_interpolation, - ACTIONS(1165), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [64980] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_LBRACE, - ACTIONS(3742), 1, - sym_name, - STATE(2028), 1, - sym_text_interpolation, - STATE(2075), 1, - sym_namespace_use_group, - [64999] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1163), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2029), 1, - sym_text_interpolation, - ACTIONS(1161), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65016] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1151), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2030), 1, - sym_text_interpolation, - ACTIONS(1149), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65033] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1115), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2031), 1, - sym_text_interpolation, - ACTIONS(1113), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65050] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1115), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2032), 1, - sym_text_interpolation, - ACTIONS(1113), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65067] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1171), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2033), 1, - sym_text_interpolation, - ACTIONS(1169), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65084] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1103), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2034), 1, - sym_text_interpolation, - ACTIONS(1101), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65101] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1099), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2035), 1, - sym_text_interpolation, - ACTIONS(1097), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65118] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1095), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2036), 1, - sym_text_interpolation, - ACTIONS(1093), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65135] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1239), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2037), 1, - sym_text_interpolation, - ACTIONS(1237), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65152] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1307), 1, - aux_sym_else_clause_token1, - ACTIONS(1413), 1, - sym_comment, - STATE(2038), 1, - sym_text_interpolation, - ACTIONS(1305), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65169] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2039), 1, - sym_text_interpolation, - ACTIONS(3562), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [65183] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2040), 1, - sym_text_interpolation, - ACTIONS(3816), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65197] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2041), 1, - sym_text_interpolation, - ACTIONS(2319), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65211] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1022), 1, - sym_compound_statement, - STATE(2042), 1, - sym_text_interpolation, - [65227] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2043), 1, - sym_text_interpolation, - ACTIONS(3449), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65241] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(462), 1, - ts_builtin_sym_end, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3818), 1, - sym_php_tag, - STATE(2044), 1, - sym_text_interpolation, - [65257] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2045), 1, - sym_text_interpolation, - ACTIONS(3820), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65271] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(469), 1, - sym_declaration_list, - STATE(2046), 1, - sym_text_interpolation, - [65287] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2047), 1, - sym_text_interpolation, - ACTIONS(3822), 2, - sym__eof, - sym_php_tag, - [65301] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1530), 1, - sym_formal_parameters, - STATE(2048), 1, - sym_text_interpolation, - [65317] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1869), 1, - sym_formal_parameters, - STATE(2049), 1, - sym_text_interpolation, - [65333] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(890), 1, - sym_compound_statement, - STATE(2050), 1, - sym_text_interpolation, - [65349] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3824), 1, - anon_sym_LPAREN, - STATE(1903), 1, - sym_parenthesized_expression, - STATE(2051), 1, - sym_text_interpolation, - [65365] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3824), 1, - anon_sym_LPAREN, - STATE(2052), 1, - sym_text_interpolation, - STATE(2180), 1, - sym_parenthesized_expression, - [65381] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, - STATE(2053), 1, - sym_text_interpolation, - [65397] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1529), 1, - anon_sym_LPAREN, - STATE(647), 1, - sym_arguments, - STATE(2054), 1, - sym_text_interpolation, - [65413] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1056), 1, - sym_compound_statement, - STATE(2055), 1, - sym_text_interpolation, - [65429] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1965), 1, - sym_formal_parameters, - STATE(2056), 1, - sym_text_interpolation, - [65445] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3828), 1, - sym_name, - STATE(2057), 1, - sym_text_interpolation, - STATE(2429), 1, - sym_namespace_name, - [65461] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3831), 1, - anon_sym_LPAREN, - STATE(2058), 1, - sym_text_interpolation, - STATE(2219), 1, - sym_parenthesized_expression, - [65477] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(1566), 1, - sym_compound_statement, - STATE(2059), 1, - sym_text_interpolation, - [65493] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1053), 1, - sym_compound_statement, - STATE(2060), 1, - sym_text_interpolation, - [65509] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1051), 1, - sym_compound_statement, - STATE(2061), 1, - sym_text_interpolation, - [65525] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3828), 1, - sym_name, - STATE(2062), 1, - sym_text_interpolation, - STATE(2423), 1, - sym_namespace_name, - [65541] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1799), 1, - sym_formal_parameters, - STATE(2063), 1, - sym_text_interpolation, - [65557] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(474), 1, - sym_declaration_list, - STATE(2064), 1, - sym_text_interpolation, - [65573] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(471), 1, - sym_declaration_list, - STATE(2065), 1, - sym_text_interpolation, - [65589] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3828), 1, - sym_name, - STATE(2066), 1, - sym_text_interpolation, - STATE(2308), 1, - sym_namespace_name, - [65605] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1811), 1, - sym_formal_parameters, - STATE(2067), 1, - sym_text_interpolation, - [65621] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2068), 1, - sym_text_interpolation, - ACTIONS(3034), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65635] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1021), 1, - sym_compound_statement, - STATE(2069), 1, - sym_text_interpolation, - [65651] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2070), 1, - sym_text_interpolation, - ACTIONS(3833), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65665] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2071), 1, - sym_text_interpolation, - ACTIONS(3272), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [65679] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2072), 1, - sym_text_interpolation, - ACTIONS(3835), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65693] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3428), 1, - anon_sym_LBRACE, - STATE(549), 1, - sym_declaration_list, - STATE(2073), 1, - sym_text_interpolation, - [65709] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1506), 1, - sym_formal_parameters, - STATE(2074), 1, - sym_text_interpolation, - [65725] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2075), 1, - sym_text_interpolation, - ACTIONS(3434), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65739] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2076), 1, - sym_text_interpolation, - ACTIONS(3837), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65753] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3213), 1, - anon_sym_LBRACE, - STATE(559), 1, - sym_enum_declaration_list, - STATE(2077), 1, - sym_text_interpolation, - [65769] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(476), 1, - sym_declaration_list, - STATE(2078), 1, - sym_text_interpolation, - [65785] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2293), 1, - anon_sym_RPAREN, - ACTIONS(3839), 1, - anon_sym_EQ, - STATE(2079), 1, - sym_text_interpolation, - [65801] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2080), 1, - sym_text_interpolation, - ACTIONS(3841), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65815] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(465), 1, - sym_declaration_list, - STATE(2081), 1, - sym_text_interpolation, - [65831] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2082), 1, - sym_text_interpolation, - ACTIONS(3843), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65845] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1111), 1, - sym_compound_statement, - STATE(2083), 1, - sym_text_interpolation, - [65861] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1499), 1, - sym_formal_parameters, - STATE(2084), 1, - sym_text_interpolation, - [65877] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(2085), 1, - sym_text_interpolation, - STATE(2227), 1, - sym_variable_name, - [65893] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1848), 1, - sym_formal_parameters, - STATE(2086), 1, - sym_text_interpolation, - [65909] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2087), 1, - sym_text_interpolation, - ACTIONS(3740), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [65923] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1494), 1, - sym_formal_parameters, - STATE(2088), 1, - sym_text_interpolation, - [65939] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1564), 1, - anon_sym_LPAREN, - STATE(706), 1, - sym_arguments, - STATE(2089), 1, - sym_text_interpolation, - [65955] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1113), 1, - sym_compound_statement, - STATE(2090), 1, - sym_text_interpolation, - [65971] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_declaration_list, - STATE(2091), 1, - sym_text_interpolation, - [65987] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2092), 1, - sym_text_interpolation, - ACTIONS(3689), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [66001] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2093), 1, - sym_text_interpolation, - ACTIONS(2242), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66015] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2094), 1, - sym_text_interpolation, - ACTIONS(3845), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66029] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2095), 1, - sym_text_interpolation, - ACTIONS(3847), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66043] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_RPAREN, - ACTIONS(3839), 1, - anon_sym_EQ, - STATE(2096), 1, - sym_text_interpolation, - [66059] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2097), 1, - sym_text_interpolation, - ACTIONS(3849), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [66073] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1550), 1, - sym_formal_parameters, - STATE(2098), 1, - sym_text_interpolation, - [66089] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(861), 1, - sym_declaration_list, - STATE(2099), 1, - sym_text_interpolation, - [66105] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1607), 1, - sym_declaration_list, - STATE(2100), 1, - sym_text_interpolation, - [66121] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(2101), 1, - sym_text_interpolation, - STATE(2282), 1, - sym_variable_name, - [66137] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(887), 1, - sym_compound_statement, - STATE(2102), 1, - sym_text_interpolation, - [66153] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1599), 1, - sym_declaration_list, - STATE(2103), 1, - sym_text_interpolation, - [66169] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(2104), 1, - sym_text_interpolation, - STATE(2123), 1, - sym_variable_name, - [66185] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(2105), 1, - sym_text_interpolation, - STATE(2270), 1, - sym_variable_name, - [66201] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2106), 1, - sym_text_interpolation, - ACTIONS(3851), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66215] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(882), 1, - sym_compound_statement, - STATE(2107), 1, - sym_text_interpolation, - [66231] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2108), 1, - sym_text_interpolation, - ACTIONS(2242), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66245] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2109), 1, - sym_text_interpolation, - ACTIONS(3853), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66259] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2110), 1, - sym_text_interpolation, - ACTIONS(3855), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66273] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2111), 1, - sym_text_interpolation, - ACTIONS(3857), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66287] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(1858), 1, - sym_variable_name, - STATE(2112), 1, - sym_text_interpolation, - [66303] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3859), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_compound_statement, - STATE(2113), 1, - sym_text_interpolation, - [66319] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2295), 1, - anon_sym_RPAREN, - ACTIONS(3839), 1, - anon_sym_EQ, - STATE(2114), 1, - sym_text_interpolation, - [66335] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1075), 1, - sym_declaration_list, - STATE(2115), 1, - sym_text_interpolation, - [66351] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2116), 1, - sym_text_interpolation, - ACTIONS(3861), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66365] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3828), 1, - sym_name, - STATE(2117), 1, - sym_text_interpolation, - STATE(2396), 1, - sym_namespace_name, - [66381] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_declaration_list, - STATE(2118), 1, - sym_text_interpolation, - [66397] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(868), 1, - sym_compound_statement, - STATE(2119), 1, - sym_text_interpolation, - [66413] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(1590), 1, - sym_compound_statement, - STATE(2120), 1, - sym_text_interpolation, - [66429] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(2121), 1, - sym_text_interpolation, - STATE(2261), 1, - sym_variable_name, - [66445] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(67), 1, - sym_parenthesized_expression, - STATE(2122), 1, - sym_text_interpolation, - [66461] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2123), 1, - sym_text_interpolation, - ACTIONS(3863), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66475] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(78), 1, - sym_parenthesized_expression, - STATE(2124), 1, - sym_text_interpolation, - [66491] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1505), 1, - sym_formal_parameters, - STATE(2125), 1, - sym_text_interpolation, - [66507] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2126), 1, - sym_text_interpolation, - ACTIONS(3865), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66521] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(211), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(484), 1, - sym_compound_statement, - STATE(2127), 1, - sym_text_interpolation, - [66537] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2128), 1, - sym_text_interpolation, - ACTIONS(3867), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66551] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3123), 1, - anon_sym_LBRACE, - STATE(2037), 1, - sym_enum_declaration_list, - STATE(2129), 1, - sym_text_interpolation, - [66567] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2563), 1, - aux_sym_arrow_function_token1, - ACTIONS(3869), 1, - aux_sym_namespace_use_declaration_token2, - STATE(2130), 1, - sym_text_interpolation, - [66583] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2131), 1, - sym_text_interpolation, - ACTIONS(3307), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66597] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(65), 1, - sym_parenthesized_expression, - STATE(2132), 1, - sym_text_interpolation, - [66613] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3871), 1, - anon_sym_SEMI, - ACTIONS(3873), 1, - sym__automatic_semicolon, - STATE(2133), 1, - sym_text_interpolation, - [66629] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(1908), 1, - sym_declaration_list, - STATE(2134), 1, - sym_text_interpolation, - [66645] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2563), 1, - aux_sym_arrow_function_token1, - ACTIONS(3875), 1, - aux_sym_namespace_use_declaration_token2, - STATE(2135), 1, - sym_text_interpolation, - [66661] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, - STATE(2136), 1, - sym_text_interpolation, - [66677] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3824), 1, - anon_sym_LPAREN, - STATE(2137), 1, - sym_text_interpolation, - STATE(2184), 1, - sym_parenthesized_expression, - [66693] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3824), 1, - anon_sym_LPAREN, - STATE(2138), 1, - sym_text_interpolation, - STATE(2245), 1, - sym_parenthesized_expression, - [66709] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3824), 1, - anon_sym_LPAREN, - STATE(1863), 1, - sym_parenthesized_expression, - STATE(2139), 1, - sym_text_interpolation, - [66725] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2140), 1, - sym_text_interpolation, - ACTIONS(3877), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [66739] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2141), 1, - sym_text_interpolation, - ACTIONS(3744), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [66753] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2142), 1, - sym_text_interpolation, - ACTIONS(3507), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [66767] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1598), 1, - sym_declaration_list, - STATE(2143), 1, - sym_text_interpolation, - [66783] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3880), 1, - anon_sym_BSLASH, - STATE(1592), 1, - aux_sym_namespace_name_repeat1, - STATE(2144), 1, - sym_text_interpolation, - [66799] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3883), 1, - anon_sym_SEMI, - ACTIONS(3885), 1, - sym__automatic_semicolon, - STATE(2145), 1, - sym_text_interpolation, - [66815] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2146), 1, - sym_text_interpolation, - ACTIONS(3887), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66829] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3859), 1, - anon_sym_LBRACE, - STATE(457), 1, - sym_compound_statement, - STATE(2147), 1, - sym_text_interpolation, - [66845] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LPAREN, - STATE(799), 1, - sym_arguments, - STATE(2148), 1, - sym_text_interpolation, - [66861] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1817), 1, - sym_formal_parameters, - STATE(2149), 1, - sym_text_interpolation, - [66877] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(376), 1, - anon_sym_COLON, - ACTIONS(1413), 1, - sym_comment, - STATE(2150), 1, - sym_text_interpolation, - STATE(2369), 1, - sym_colon_block, - [66893] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3831), 1, - anon_sym_LPAREN, - STATE(2116), 1, - sym_parenthesized_expression, - STATE(2151), 1, - sym_text_interpolation, - [66909] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1082), 1, - sym_declaration_list, - STATE(2152), 1, - sym_text_interpolation, - [66925] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1820), 1, - sym_formal_parameters, - STATE(2153), 1, - sym_text_interpolation, - [66941] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1821), 1, - sym_formal_parameters, - STATE(2154), 1, - sym_text_interpolation, - [66957] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2155), 1, - sym_text_interpolation, - ACTIONS(2789), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66971] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1123), 1, - sym_compound_statement, - STATE(2156), 1, - sym_text_interpolation, - [66987] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2157), 1, - sym_text_interpolation, - ACTIONS(3889), 2, - anon_sym_SEMI, - anon_sym_COLON, - [67001] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2158), 1, - sym_text_interpolation, - ACTIONS(3022), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67015] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1096), 1, - sym_declaration_list, - STATE(2159), 1, - sym_text_interpolation, - [67031] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1100), 1, - sym_declaration_list, - STATE(2160), 1, - sym_text_interpolation, - [67047] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(211), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(568), 1, - sym_compound_statement, - STATE(2161), 1, - sym_text_interpolation, - [67063] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(82), 1, - sym_parenthesized_expression, - STATE(2162), 1, - sym_text_interpolation, - [67079] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1877), 1, - sym_formal_parameters, - STATE(2163), 1, - sym_text_interpolation, - [67095] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(64), 1, - sym_parenthesized_expression, - STATE(2164), 1, - sym_text_interpolation, - [67111] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1826), 1, - sym_formal_parameters, - STATE(2165), 1, - sym_text_interpolation, - [67127] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(1880), 1, - sym_compound_statement, - STATE(2166), 1, - sym_text_interpolation, - [67143] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(854), 1, - sym_compound_statement, - STATE(2167), 1, - sym_text_interpolation, - [67159] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2168), 1, - sym_text_interpolation, - ACTIONS(1552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67173] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2169), 1, - sym_text_interpolation, - ACTIONS(2863), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [67187] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2170), 1, - sym_text_interpolation, - ACTIONS(3891), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [67201] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2171), 1, - sym_text_interpolation, - ACTIONS(2329), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67215] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2172), 1, - sym_text_interpolation, - ACTIONS(3893), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67229] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3895), 1, - anon_sym_LPAREN, - STATE(1579), 1, - sym_formal_parameters, - STATE(2173), 1, - sym_text_interpolation, - [67245] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(886), 1, - sym_compound_statement, - STATE(2174), 1, - sym_text_interpolation, - [67261] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(913), 1, - sym_compound_statement, - STATE(2175), 1, - sym_text_interpolation, - [67277] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3123), 1, - anon_sym_LBRACE, - STATE(2036), 1, - sym_enum_declaration_list, - STATE(2176), 1, - sym_text_interpolation, - [67293] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2177), 1, - sym_text_interpolation, - ACTIONS(3897), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67307] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2178), 1, - sym_text_interpolation, - ACTIONS(3899), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67321] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2179), 1, - sym_text_interpolation, - ACTIONS(3901), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67335] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - STATE(875), 1, - sym_match_block, - STATE(2180), 1, - sym_text_interpolation, - [67351] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2181), 1, - sym_text_interpolation, - ACTIONS(3905), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67365] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3907), 1, - anon_sym_SEMI, - ACTIONS(3909), 1, - sym__automatic_semicolon, - STATE(2182), 1, - sym_text_interpolation, - [67381] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1879), 1, - sym_formal_parameters, - STATE(2183), 1, - sym_text_interpolation, - [67397] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(498), 1, - anon_sym_COLON, - ACTIONS(1413), 1, - sym_comment, - STATE(1806), 1, - sym_colon_block, - STATE(2184), 1, - sym_text_interpolation, - [67413] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2185), 1, - sym_text_interpolation, - ACTIONS(3911), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67427] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(891), 1, - sym_declaration_list, - STATE(2186), 1, - sym_text_interpolation, - [67443] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(39), 1, - sym_parenthesized_expression, - STATE(2187), 1, - sym_text_interpolation, - [67459] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1087), 1, - sym_compound_statement, - STATE(2188), 1, - sym_text_interpolation, - [67475] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1039), 1, - sym_declaration_list, - STATE(2189), 1, - sym_text_interpolation, - [67491] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2190), 1, - sym_text_interpolation, - ACTIONS(3913), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [67505] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2191), 1, - sym_text_interpolation, - ACTIONS(3624), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67519] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1090), 1, - sym_compound_statement, - STATE(2192), 1, - sym_text_interpolation, - [67535] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2193), 1, - sym_text_interpolation, - ACTIONS(3679), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [67549] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2194), 1, - sym_text_interpolation, - ACTIONS(2307), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67563] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(1930), 1, - sym_compound_statement, - STATE(2195), 1, - sym_text_interpolation, - [67579] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1091), 1, - sym_compound_statement, - STATE(2196), 1, - sym_text_interpolation, - [67595] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3213), 1, - anon_sym_LBRACE, - STATE(564), 1, - sym_enum_declaration_list, - STATE(2197), 1, - sym_text_interpolation, - [67611] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(892), 1, - sym_declaration_list, - STATE(2198), 1, - sym_text_interpolation, - [67627] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2199), 1, - sym_text_interpolation, - ACTIONS(3916), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67641] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2200), 1, - sym_text_interpolation, - ACTIONS(2321), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67655] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(63), 1, - sym_parenthesized_expression, - STATE(2201), 1, - sym_text_interpolation, - [67671] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3895), 1, - anon_sym_LPAREN, - STATE(1627), 1, - sym_formal_parameters, - STATE(2202), 1, - sym_text_interpolation, - [67687] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(472), 1, - sym_declaration_list, - STATE(2203), 1, - sym_text_interpolation, - [67703] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(475), 1, - sym_declaration_list, - STATE(2204), 1, - sym_text_interpolation, - [67719] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2205), 1, - sym_text_interpolation, - ACTIONS(3617), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [67733] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(907), 1, - sym_compound_statement, - STATE(2206), 1, - sym_text_interpolation, - [67749] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2207), 1, - sym_text_interpolation, - ACTIONS(3395), 2, - anon_sym_EQ, - anon_sym_RPAREN, - [67763] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(1936), 1, - sym_declaration_list, - STATE(2208), 1, - sym_text_interpolation, - [67779] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1507), 1, - sym_formal_parameters, - STATE(2209), 1, - sym_text_interpolation, - [67795] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym_compound_statement, - STATE(2210), 1, - sym_text_interpolation, - [67811] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3213), 1, - anon_sym_LBRACE, - STATE(526), 1, - sym_enum_declaration_list, - STATE(2211), 1, - sym_text_interpolation, - [67827] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2985), 1, - anon_sym_LBRACE, - STATE(467), 1, - sym_declaration_list, - STATE(2212), 1, - sym_text_interpolation, - [67843] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3123), 1, - anon_sym_LBRACE, - STATE(1939), 1, - sym_enum_declaration_list, - STATE(2213), 1, - sym_text_interpolation, - [67859] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym_parenthesized_expression, - STATE(2214), 1, - sym_text_interpolation, - [67875] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(2094), 1, - sym_variable_name, - STATE(2215), 1, - sym_text_interpolation, - [67891] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(894), 1, - sym_declaration_list, - STATE(2216), 1, - sym_text_interpolation, - [67907] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2217), 1, - sym_text_interpolation, - ACTIONS(1541), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [67921] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2218), 1, - sym_text_interpolation, - ACTIONS(3918), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [67935] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2219), 1, - sym_text_interpolation, - ACTIONS(3920), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67949] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2220), 1, - sym_text_interpolation, - ACTIONS(3922), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67963] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2221), 1, - sym_text_interpolation, - ACTIONS(3924), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67977] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2222), 1, - sym_text_interpolation, - ACTIONS(3926), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67991] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2223), 1, - sym_text_interpolation, - ACTIONS(3928), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68005] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2224), 1, - sym_text_interpolation, - ACTIONS(3930), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [68019] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2225), 1, - sym_text_interpolation, - ACTIONS(3932), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68033] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1626), 1, - sym_declaration_list, - STATE(2226), 1, - sym_text_interpolation, - [68049] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2227), 1, - sym_text_interpolation, - ACTIONS(3934), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68063] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2228), 1, - sym_text_interpolation, - ACTIONS(482), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68077] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3213), 1, - anon_sym_LBRACE, - STATE(487), 1, - sym_enum_declaration_list, - STATE(2229), 1, - sym_text_interpolation, - [68093] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(905), 1, - sym_compound_statement, - STATE(2230), 1, - sym_text_interpolation, - [68109] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2231), 1, - sym_text_interpolation, - ACTIONS(3936), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [68123] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2232), 1, - sym_text_interpolation, - ACTIONS(476), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68137] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2233), 1, - sym_text_interpolation, - ACTIONS(3567), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68151] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1582), 1, - sym_declaration_list, - STATE(2234), 1, - sym_text_interpolation, - [68167] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(1573), 1, - sym_compound_statement, - STATE(2235), 1, - sym_text_interpolation, - [68183] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2236), 1, - sym_text_interpolation, - ACTIONS(3938), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68197] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2237), 1, - sym_text_interpolation, - ACTIONS(3940), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68211] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2238), 1, - sym_text_interpolation, - ACTIONS(3942), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68225] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2239), 1, - sym_text_interpolation, - ACTIONS(2236), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68239] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1786), 1, - sym_formal_parameters, - STATE(2240), 1, - sym_text_interpolation, - [68255] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2241), 1, - sym_text_interpolation, - ACTIONS(3944), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68269] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1036), 1, - sym_compound_statement, - STATE(2242), 1, - sym_text_interpolation, - [68285] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1874), 1, - sym_formal_parameters, - STATE(2243), 1, - sym_text_interpolation, - [68301] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1559), 1, - sym_declaration_list, - STATE(2244), 1, - sym_text_interpolation, - [68317] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3946), 1, - anon_sym_LBRACE, - STATE(1119), 1, - sym_match_block, - STATE(2245), 1, - sym_text_interpolation, - [68333] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3123), 1, - anon_sym_LBRACE, - STATE(1992), 1, - sym_enum_declaration_list, - STATE(2246), 1, - sym_text_interpolation, - [68349] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_BSLASH, - STATE(2144), 1, - aux_sym_namespace_name_repeat1, - STATE(2247), 1, - sym_text_interpolation, - [68365] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - STATE(604), 1, - sym_arguments, - STATE(2248), 1, - sym_text_interpolation, - [68381] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1033), 1, - sym_compound_statement, - STATE(2249), 1, - sym_text_interpolation, - [68397] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3859), 1, - anon_sym_LBRACE, - STATE(461), 1, - sym_compound_statement, - STATE(2250), 1, - sym_text_interpolation, - [68413] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2251), 1, - sym_text_interpolation, - ACTIONS(468), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68427] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1870), 1, - sym_formal_parameters, - STATE(2252), 1, - sym_text_interpolation, - [68443] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(910), 1, - sym_compound_statement, - STATE(2253), 1, - sym_text_interpolation, - [68459] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(911), 1, - sym_compound_statement, - STATE(2254), 1, - sym_text_interpolation, - [68475] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1868), 1, - sym_formal_parameters, - STATE(2255), 1, - sym_text_interpolation, - [68491] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2256), 1, - sym_text_interpolation, - ACTIONS(3948), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68505] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3950), 1, - sym_name, - STATE(1633), 1, - sym_namespace_name, - STATE(2257), 1, - sym_text_interpolation, - [68521] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(900), 1, - sym_compound_statement, - STATE(2258), 1, - sym_text_interpolation, - [68537] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1866), 1, - sym_formal_parameters, - STATE(2259), 1, - sym_text_interpolation, - [68553] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2365), 1, - anon_sym_RPAREN, - ACTIONS(3839), 1, - anon_sym_EQ, - STATE(2260), 1, - sym_text_interpolation, - [68569] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2261), 1, - sym_text_interpolation, - ACTIONS(3952), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68583] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(1624), 1, - sym_compound_statement, - STATE(2262), 1, - sym_text_interpolation, - [68599] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(871), 1, - sym_compound_statement, - STATE(2263), 1, - sym_text_interpolation, - [68615] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2315), 1, - anon_sym_RPAREN, - ACTIONS(3839), 1, - anon_sym_EQ, - STATE(2264), 1, - sym_text_interpolation, - [68631] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(904), 1, - sym_compound_statement, - STATE(2265), 1, - sym_text_interpolation, - [68647] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2266), 1, - sym_text_interpolation, - ACTIONS(3954), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68661] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1114), 1, - sym_compound_statement, - STATE(2267), 1, - sym_text_interpolation, - [68677] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2268), 1, - sym_text_interpolation, - ACTIONS(3956), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68691] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2895), 1, - anon_sym_LBRACE, - STATE(898), 1, - sym_declaration_list, - STATE(2269), 1, - sym_text_interpolation, - [68707] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2270), 1, - sym_text_interpolation, - ACTIONS(3958), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68721] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2271), 1, - sym_text_interpolation, - ACTIONS(2236), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68735] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2272), 1, - sym_text_interpolation, - ACTIONS(3960), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68749] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3962), 1, - anon_sym_SEMI, - ACTIONS(3964), 1, - sym__automatic_semicolon, - STATE(2273), 1, - sym_text_interpolation, - [68765] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(1563), 1, - sym_compound_statement, - STATE(2274), 1, - sym_text_interpolation, - [68781] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_RPAREN, - STATE(2275), 1, - sym_text_interpolation, - [68797] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(2076), 1, - sym_variable_name, - STATE(2276), 1, - sym_text_interpolation, - [68813] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2277), 1, - sym_text_interpolation, - ACTIONS(3970), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68827] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2278), 1, - sym_text_interpolation, - ACTIONS(3972), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68841] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1967), 1, - sym_formal_parameters, - STATE(2279), 1, - sym_text_interpolation, - [68857] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2280), 1, - sym_text_interpolation, - ACTIONS(3974), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68871] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2281), 1, - sym_text_interpolation, - ACTIONS(3976), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68885] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2282), 1, - sym_text_interpolation, - ACTIONS(3978), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68899] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3428), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_declaration_list, - STATE(2283), 1, - sym_text_interpolation, - [68915] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2284), 1, - sym_text_interpolation, - ACTIONS(3980), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68929] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(2080), 1, - sym_variable_name, - STATE(2285), 1, - sym_text_interpolation, - [68945] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(884), 1, - sym_compound_statement, - STATE(2286), 1, - sym_text_interpolation, - [68961] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(2017), 1, - sym_formal_parameters, - STATE(2287), 1, - sym_text_interpolation, - [68977] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1738), 1, - anon_sym_DOLLAR, - STATE(2082), 1, - sym_variable_name, - STATE(2288), 1, - sym_text_interpolation, - [68993] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2289), 1, - sym_text_interpolation, - ACTIONS(3982), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69007] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1558), 1, - sym_declaration_list, - STATE(2290), 1, - sym_text_interpolation, - [69023] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2291), 1, - sym_text_interpolation, - ACTIONS(3984), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69037] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3828), 1, - sym_name, - STATE(2292), 1, - sym_text_interpolation, - STATE(2447), 1, - sym_namespace_name, - [69053] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(1517), 1, - sym_formal_parameters, - STATE(2293), 1, - sym_text_interpolation, - [69069] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2294), 1, - sym_text_interpolation, - ACTIONS(3594), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69083] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2295), 1, - sym_text_interpolation, - ACTIONS(3986), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69097] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2981), 1, - anon_sym_LBRACE, - STATE(1061), 1, - sym_compound_statement, - STATE(2296), 1, - sym_text_interpolation, - [69113] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - STATE(2297), 1, - sym_text_interpolation, - ACTIONS(438), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69127] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3988), 1, - sym_name, - STATE(2298), 1, - sym_text_interpolation, - STATE(2438), 1, - sym_namespace_name, - [69143] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2883), 1, - anon_sym_LBRACE, - STATE(1583), 1, - sym_declaration_list, - STATE(2299), 1, - sym_text_interpolation, - [69159] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(1413), 1, - sym_comment, - STATE(908), 1, - sym_compound_statement, - STATE(2300), 1, - sym_text_interpolation, - [69175] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3991), 1, - sym_name, - STATE(2301), 1, - sym_text_interpolation, - [69188] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3993), 1, - anon_sym_EQ_GT, - STATE(2302), 1, - sym_text_interpolation, - [69201] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3995), 1, - anon_sym_EQ_GT, - STATE(2303), 1, - sym_text_interpolation, - [69214] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3792), 1, - anon_sym_LBRACE, - STATE(2304), 1, - sym_text_interpolation, - [69227] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3997), 1, - anon_sym_EQ, - STATE(2305), 1, - sym_text_interpolation, - [69240] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3999), 1, - anon_sym_RPAREN, - STATE(2306), 1, - sym_text_interpolation, - [69253] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4001), 1, - aux_sym_class_declaration_token1, - STATE(2307), 1, - sym_text_interpolation, - [69266] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3080), 1, - anon_sym_BSLASH, - STATE(2308), 1, - sym_text_interpolation, - [69279] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3581), 1, - anon_sym_RPAREN, - STATE(2309), 1, - sym_text_interpolation, - [69292] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3968), 1, - anon_sym_RPAREN, - STATE(2310), 1, - sym_text_interpolation, - [69305] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4003), 1, - sym_name, - STATE(2311), 1, - sym_text_interpolation, - [69318] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4005), 1, - anon_sym_BSLASH, - STATE(2312), 1, - sym_text_interpolation, - [69331] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3839), 1, - anon_sym_EQ, - STATE(2313), 1, - sym_text_interpolation, - [69344] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4007), 1, - anon_sym_RPAREN, - STATE(2314), 1, - sym_text_interpolation, - [69357] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(840), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - STATE(2315), 1, - sym_text_interpolation, - [69370] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2365), 1, - anon_sym_RPAREN, - STATE(2316), 1, - sym_text_interpolation, - [69383] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2315), 1, - anon_sym_RPAREN, - STATE(2317), 1, - sym_text_interpolation, - [69396] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4009), 1, - aux_sym_foreach_statement_token2, - STATE(2318), 1, - sym_text_interpolation, - [69409] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(834), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - STATE(2319), 1, - sym_text_interpolation, - [69422] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4011), 1, - anon_sym_RPAREN, - STATE(2320), 1, - sym_text_interpolation, - [69435] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3699), 1, - anon_sym_RBRACK, - STATE(2321), 1, - sym_text_interpolation, - [69448] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4013), 1, - anon_sym_EQ_GT, - STATE(2322), 1, - sym_text_interpolation, - [69461] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4015), 1, - anon_sym_RPAREN, - STATE(2323), 1, - sym_text_interpolation, - [69474] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4017), 1, - sym_name, - STATE(2324), 1, - sym_text_interpolation, - [69487] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4019), 1, - anon_sym_RPAREN, - STATE(2325), 1, - sym_text_interpolation, - [69500] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4021), 1, - aux_sym_while_statement_token1, - STATE(2326), 1, - sym_text_interpolation, - [69513] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2222), 1, - anon_sym_STAR_STAR, - STATE(2327), 1, - sym_text_interpolation, - [69526] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3225), 1, - sym_name, - STATE(2328), 1, - sym_text_interpolation, - [69539] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_EQ_GT, - STATE(2329), 1, - sym_text_interpolation, - [69552] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_EQ_GT, - STATE(2330), 1, - sym_text_interpolation, - [69565] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4027), 1, - anon_sym_EQ_GT, - STATE(2331), 1, - sym_text_interpolation, - [69578] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4029), 1, - anon_sym_EQ_GT, - STATE(2332), 1, - sym_text_interpolation, - [69591] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4031), 1, - anon_sym_EQ_GT, - STATE(2333), 1, - sym_text_interpolation, - [69604] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4033), 1, - anon_sym_EQ_GT, - STATE(2334), 1, - sym_text_interpolation, - [69617] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_EQ_GT, - STATE(2335), 1, - sym_text_interpolation, - [69630] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4037), 1, - anon_sym_EQ_GT, - STATE(2336), 1, - sym_text_interpolation, - [69643] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4039), 1, - anon_sym_EQ_GT, - STATE(2337), 1, - sym_text_interpolation, - [69656] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4041), 1, - anon_sym_EQ, - STATE(2338), 1, - sym_text_interpolation, - [69669] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4043), 1, - anon_sym_EQ_GT, - STATE(2339), 1, - sym_text_interpolation, - [69682] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4045), 1, - anon_sym_EQ_GT, - STATE(2340), 1, - sym_text_interpolation, - [69695] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4047), 1, - anon_sym_RPAREN, - STATE(2341), 1, - sym_text_interpolation, - [69708] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3048), 1, - anon_sym_COLON_COLON, - STATE(2342), 1, - sym_text_interpolation, - [69721] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4049), 1, - anon_sym_COLON_COLON, - STATE(2343), 1, - sym_text_interpolation, - [69734] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4051), 1, - anon_sym_EQ_GT, - STATE(2344), 1, - sym_text_interpolation, - [69747] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4053), 1, - anon_sym_COLON_COLON, - STATE(2345), 1, - sym_text_interpolation, - [69760] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4055), 1, - anon_sym_EQ, - STATE(2346), 1, - sym_text_interpolation, - [69773] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4057), 1, - anon_sym_EQ_GT, - STATE(2347), 1, - sym_text_interpolation, - [69786] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4059), 1, - aux_sym_class_declaration_token1, - STATE(2348), 1, - sym_text_interpolation, - [69799] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4061), 1, - anon_sym_EQ, - STATE(2349), 1, - sym_text_interpolation, - [69812] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4063), 1, - anon_sym_RBRACK, - STATE(2350), 1, - sym_text_interpolation, - [69825] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4065), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_text_interpolation, - [69838] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4067), 1, - sym_integer, - STATE(2352), 1, - sym_text_interpolation, - [69851] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4069), 1, - anon_sym_RBRACK, - STATE(2353), 1, - sym_text_interpolation, - [69864] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4071), 1, - sym_name, - STATE(2354), 1, - sym_text_interpolation, - [69877] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4073), 1, - sym_name, - STATE(2355), 1, - sym_text_interpolation, - [69890] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4075), 1, - anon_sym_SQUOTE, - STATE(2356), 1, - sym_text_interpolation, - [69903] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(850), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - STATE(2357), 1, - sym_text_interpolation, - [69916] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4077), 1, - anon_sym_SEMI, - STATE(2358), 1, - sym_text_interpolation, - [69929] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2293), 1, - anon_sym_RPAREN, - STATE(2359), 1, - sym_text_interpolation, - [69942] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4079), 1, - anon_sym_EQ, - STATE(2360), 1, - sym_text_interpolation, - [69955] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - STATE(2361), 1, - sym_text_interpolation, - [69968] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3693), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_text_interpolation, - [69981] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4083), 1, - anon_sym_RPAREN, - STATE(2363), 1, - sym_text_interpolation, - [69994] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4085), 1, - sym_name, - STATE(2364), 1, - sym_text_interpolation, - [70007] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_RPAREN, - STATE(2365), 1, - sym_text_interpolation, - [70020] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4087), 1, - anon_sym_EQ_GT, - STATE(2366), 1, - sym_text_interpolation, - [70033] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4089), 1, - anon_sym_COLON_COLON, - STATE(2367), 1, - sym_text_interpolation, - [70046] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4091), 1, - anon_sym_EQ, - STATE(2368), 1, - sym_text_interpolation, - [70059] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4093), 1, - aux_sym_if_statement_token2, - STATE(2369), 1, - sym_text_interpolation, - [70072] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4095), 1, - anon_sym_RPAREN, - STATE(2370), 1, - sym_text_interpolation, - [70085] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4097), 1, - anon_sym_EQ_GT, - STATE(2371), 1, - sym_text_interpolation, - [70098] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4099), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_text_interpolation, - [70111] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4101), 1, - anon_sym_EQ_GT, - STATE(2373), 1, - sym_text_interpolation, - [70124] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2136), 1, - anon_sym_STAR_STAR, - STATE(2374), 1, - sym_text_interpolation, - [70137] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4103), 1, - anon_sym_EQ_GT, - STATE(2375), 1, - sym_text_interpolation, - [70150] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4105), 1, - anon_sym_RPAREN, - STATE(2376), 1, - sym_text_interpolation, - [70163] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4107), 1, - anon_sym_EQ_GT, - STATE(2377), 1, - sym_text_interpolation, - [70176] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4109), 1, - anon_sym_EQ_GT, - STATE(2378), 1, - sym_text_interpolation, - [70189] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4111), 1, - anon_sym_EQ, - STATE(2379), 1, - sym_text_interpolation, - [70202] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4113), 1, - anon_sym_EQ_GT, - STATE(2380), 1, - sym_text_interpolation, - [70215] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4115), 1, - anon_sym_EQ_GT, - STATE(2381), 1, - sym_text_interpolation, - [70228] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3102), 1, - sym_name, - STATE(2382), 1, - sym_text_interpolation, - [70241] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4117), 1, - anon_sym_COLON_COLON, - STATE(2383), 1, - sym_text_interpolation, - [70254] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym_EQ_GT, - STATE(2384), 1, - sym_text_interpolation, - [70267] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3724), 1, - anon_sym_RPAREN, - STATE(2385), 1, - sym_text_interpolation, - [70280] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3518), 1, - anon_sym_RPAREN, - STATE(2386), 1, - sym_text_interpolation, - [70293] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4121), 1, - sym_name, - STATE(2387), 1, - sym_text_interpolation, - [70306] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4123), 1, - anon_sym_SEMI, - STATE(2388), 1, - sym_text_interpolation, - [70319] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4125), 1, - sym_name, - STATE(2389), 1, - sym_text_interpolation, - [70332] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_RPAREN, - STATE(2390), 1, - sym_text_interpolation, - [70345] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4129), 1, - anon_sym_SQUOTE, - STATE(2391), 1, - sym_text_interpolation, - [70358] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4131), 1, - aux_sym_namespace_use_declaration_token3, - STATE(2392), 1, - sym_text_interpolation, - [70371] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4133), 1, - aux_sym_arrow_function_token1, - STATE(2393), 1, - sym_text_interpolation, - [70384] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4135), 1, - anon_sym_EQ_GT, - STATE(2394), 1, - sym_text_interpolation, - [70397] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4137), 1, - anon_sym_RBRACK, - STATE(2395), 1, - sym_text_interpolation, - [70410] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4139), 1, - anon_sym_BSLASH, - STATE(2396), 1, - sym_text_interpolation, - [70423] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4141), 1, - aux_sym_if_statement_token2, - STATE(2397), 1, - sym_text_interpolation, - [70436] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4143), 1, - aux_sym_while_statement_token2, - STATE(2398), 1, - sym_text_interpolation, - [70449] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4145), 1, - anon_sym_LPAREN, - STATE(2399), 1, - sym_text_interpolation, - [70462] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4147), 1, - anon_sym_BSLASH, - STATE(2400), 1, - sym_text_interpolation, - [70475] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4149), 1, - sym_name, - STATE(2401), 1, - sym_text_interpolation, - [70488] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4151), 1, - aux_sym_if_statement_token2, - STATE(2402), 1, - sym_text_interpolation, - [70501] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4153), 1, - anon_sym_EQ_GT, - STATE(2403), 1, - sym_text_interpolation, - [70514] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(4155), 1, - aux_sym_string_token2, - STATE(2404), 1, - sym_text_interpolation, - [70527] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4157), 1, - sym_name, - STATE(2405), 1, - sym_text_interpolation, - [70540] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3742), 1, - sym_name, - STATE(2406), 1, - sym_text_interpolation, - [70553] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4159), 1, - anon_sym_LPAREN, - STATE(2407), 1, - sym_text_interpolation, - [70566] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4161), 1, - sym_name, - STATE(2408), 1, - sym_text_interpolation, - [70579] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4163), 1, - anon_sym_RPAREN, - STATE(2409), 1, - sym_text_interpolation, - [70592] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4165), 1, - anon_sym_EQ, - STATE(2410), 1, - sym_text_interpolation, - [70605] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4167), 1, - aux_sym_class_declaration_token1, - STATE(2411), 1, - sym_text_interpolation, - [70618] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4169), 1, - aux_sym_arrow_function_token1, - STATE(2412), 1, - sym_text_interpolation, - [70631] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4171), 1, - aux_sym_namespace_use_declaration_token3, - STATE(2413), 1, - sym_text_interpolation, - [70644] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4173), 1, - anon_sym_BSLASH, - STATE(2414), 1, - sym_text_interpolation, - [70657] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4175), 1, - sym_name, - STATE(2415), 1, - sym_text_interpolation, - [70670] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4177), 1, - sym_name, - STATE(2416), 1, - sym_text_interpolation, - [70683] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3672), 1, - anon_sym_RPAREN, - STATE(2417), 1, - sym_text_interpolation, - [70696] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4179), 1, - aux_sym_while_statement_token1, - STATE(2418), 1, - sym_text_interpolation, - [70709] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4181), 1, - sym_name, - STATE(2419), 1, - sym_text_interpolation, - [70722] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4183), 1, - aux_sym_class_declaration_token1, - STATE(2420), 1, - sym_text_interpolation, - [70735] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4185), 1, - aux_sym_arrow_function_token1, - STATE(2421), 1, - sym_text_interpolation, - [70748] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4187), 1, - anon_sym_BSLASH, - STATE(2422), 1, - sym_text_interpolation, - [70761] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4189), 1, - anon_sym_BSLASH, - STATE(2423), 1, - sym_text_interpolation, - [70774] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4191), 1, - aux_sym_class_declaration_token1, - STATE(2424), 1, - sym_text_interpolation, - [70787] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4193), 1, - anon_sym_RPAREN, - STATE(2425), 1, - sym_text_interpolation, - [70800] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4195), 1, - anon_sym_LPAREN, - STATE(2426), 1, - sym_text_interpolation, - [70813] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4197), 1, - anon_sym_EQ, - STATE(2427), 1, - sym_text_interpolation, - [70826] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4199), 1, - anon_sym_LPAREN, - STATE(2428), 1, - sym_text_interpolation, - [70839] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4201), 1, - anon_sym_BSLASH, - STATE(2429), 1, - sym_text_interpolation, - [70852] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4203), 1, - anon_sym_COLON_COLON, - STATE(2430), 1, - sym_text_interpolation, - [70865] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4205), 1, - aux_sym_arrow_function_token1, - STATE(2431), 1, - sym_text_interpolation, - [70878] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(820), 1, - anon_sym_SEMI, - ACTIONS(1413), 1, - sym_comment, - STATE(2432), 1, - sym_text_interpolation, - [70891] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4207), 1, - sym_name, - STATE(2433), 1, - sym_text_interpolation, - [70904] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_STAR_STAR, - STATE(2434), 1, - sym_text_interpolation, - [70917] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(818), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - STATE(2435), 1, - sym_text_interpolation, - [70930] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(836), 1, - anon_sym_SEMI, - ACTIONS(1413), 1, - sym_comment, - STATE(2436), 1, - sym_text_interpolation, - [70943] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(858), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - STATE(2437), 1, - sym_text_interpolation, - [70956] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4209), 1, - anon_sym_BSLASH, - STATE(2438), 1, - sym_text_interpolation, - [70969] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym_SEMI, - STATE(2439), 1, - sym_text_interpolation, - [70982] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2295), 1, - anon_sym_RPAREN, - STATE(2440), 1, - sym_text_interpolation, - [70995] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3636), 1, - sym_name, - STATE(2441), 1, - sym_text_interpolation, - [71008] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4213), 1, - anon_sym_BSLASH, - STATE(2442), 1, - sym_text_interpolation, - [71021] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(854), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - STATE(2443), 1, - sym_text_interpolation, - [71034] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4215), 1, - anon_sym_LPAREN, - STATE(2444), 1, - sym_text_interpolation, - [71047] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4217), 1, - anon_sym_RPAREN, - STATE(2445), 1, - sym_text_interpolation, - [71060] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4219), 1, - anon_sym_RPAREN, - STATE(2446), 1, - sym_text_interpolation, - [71073] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_BSLASH, - STATE(2447), 1, - sym_text_interpolation, - [71086] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4223), 1, - anon_sym_LPAREN, - STATE(2448), 1, - sym_text_interpolation, - [71099] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4225), 1, - anon_sym_LPAREN, - STATE(2449), 1, - sym_text_interpolation, - [71112] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4227), 1, - sym_name, - STATE(2450), 1, - sym_text_interpolation, - [71125] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4229), 1, - aux_sym_foreach_statement_token2, - STATE(2451), 1, - sym_text_interpolation, - [71138] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4231), 1, - anon_sym_RPAREN, - STATE(2452), 1, - sym_text_interpolation, - [71151] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3750), 1, - anon_sym_RPAREN, - STATE(2453), 1, - sym_text_interpolation, - [71164] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4233), 1, - anon_sym_EQ_GT, - STATE(2454), 1, - sym_text_interpolation, - [71177] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3788), 1, - anon_sym_RPAREN, - STATE(2455), 1, - sym_text_interpolation, - [71190] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(852), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - STATE(2456), 1, - sym_text_interpolation, - [71203] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ_GT, - STATE(2457), 1, - sym_text_interpolation, - [71216] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4237), 1, - sym_name, - STATE(2458), 1, - sym_text_interpolation, - [71229] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3772), 1, - anon_sym_RPAREN, - STATE(2459), 1, - sym_text_interpolation, - [71242] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4239), 1, - anon_sym_RPAREN, - STATE(2460), 1, - sym_text_interpolation, - [71255] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4241), 1, - anon_sym_RPAREN, - STATE(2461), 1, - sym_text_interpolation, - [71268] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4243), 1, - aux_sym_arrow_function_token1, - STATE(2462), 1, - sym_text_interpolation, - [71281] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4245), 1, - aux_sym_namespace_use_declaration_token3, - STATE(2463), 1, - sym_text_interpolation, - [71294] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3756), 1, - anon_sym_LBRACE, - STATE(2464), 1, - sym_text_interpolation, - [71307] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4247), 1, - aux_sym_if_statement_token2, - STATE(2465), 1, - sym_text_interpolation, - [71320] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4249), 1, - aux_sym_arrow_function_token1, - STATE(2466), 1, - sym_text_interpolation, - [71333] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_text_interpolation, - [71346] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(860), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - sym_comment, - STATE(2468), 1, - sym_text_interpolation, - [71359] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4251), 1, - anon_sym_EQ_GT, - STATE(2469), 1, - sym_text_interpolation, - [71372] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(816), 1, - anon_sym_SEMI, - ACTIONS(1413), 1, - sym_comment, - STATE(2470), 1, - sym_text_interpolation, - [71385] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4253), 1, - sym_name, - STATE(2471), 1, - sym_text_interpolation, - [71398] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4255), 1, - sym_name, - STATE(2472), 1, - sym_text_interpolation, - [71411] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(2180), 1, - anon_sym_STAR_STAR, - STATE(2473), 1, - sym_text_interpolation, - [71424] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_SEMI, - STATE(2474), 1, - sym_text_interpolation, - [71437] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4259), 1, - anon_sym_EQ_GT, - STATE(2475), 1, - sym_text_interpolation, - [71450] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4261), 1, - aux_sym_if_statement_token2, - STATE(2476), 1, - sym_text_interpolation, - [71463] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4263), 1, - sym_name, - STATE(2477), 1, - sym_text_interpolation, - [71476] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4265), 1, - sym_name, - STATE(2478), 1, - sym_text_interpolation, - [71489] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4267), 1, - anon_sym_COLON_COLON, - STATE(2479), 1, - sym_text_interpolation, - [71502] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3798), 1, - anon_sym_RPAREN, - STATE(2480), 1, - sym_text_interpolation, - [71515] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4269), 1, - anon_sym_COLON_COLON, - STATE(2481), 1, - sym_text_interpolation, - [71528] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3804), 1, - anon_sym_RPAREN, - STATE(2482), 1, - sym_text_interpolation, - [71541] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4271), 1, - anon_sym_COLON_COLON, - STATE(2483), 1, - sym_text_interpolation, - [71554] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4273), 1, - anon_sym_COLON_COLON, - STATE(2484), 1, - sym_text_interpolation, - [71567] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4275), 1, - anon_sym_EQ_GT, - STATE(2485), 1, - sym_text_interpolation, - [71580] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4277), 1, - anon_sym_COLON_COLON, - STATE(2486), 1, - sym_text_interpolation, - [71593] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4279), 1, - sym_name, - STATE(2487), 1, - sym_text_interpolation, - [71606] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4281), 1, - aux_sym_arrow_function_token1, - STATE(2488), 1, - sym_text_interpolation, - [71619] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4283), 1, - sym_name, - STATE(2489), 1, - sym_text_interpolation, - [71632] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4285), 1, - aux_sym_arrow_function_token1, - STATE(2490), 1, - sym_text_interpolation, - [71645] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4287), 1, - anon_sym_EQ_GT, - STATE(2491), 1, - sym_text_interpolation, - [71658] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - STATE(2492), 1, - sym_text_interpolation, - [71671] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4291), 1, - anon_sym_LPAREN, - STATE(2493), 1, - sym_text_interpolation, - [71684] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4293), 1, - sym_name, - STATE(2494), 1, - sym_text_interpolation, - [71697] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4295), 1, - sym_name, - STATE(2495), 1, - sym_text_interpolation, - [71710] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4297), 1, - anon_sym_RPAREN, - STATE(2496), 1, - sym_text_interpolation, - [71723] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4299), 1, - sym_name, - STATE(2497), 1, - sym_text_interpolation, - [71736] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_LPAREN, - STATE(2498), 1, - sym_text_interpolation, - [71749] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - STATE(2499), 1, - sym_text_interpolation, - [71762] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4303), 1, - aux_sym_while_statement_token2, - STATE(2500), 1, - sym_text_interpolation, - [71775] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4305), 1, - anon_sym_SEMI, - STATE(2501), 1, - sym_text_interpolation, - [71788] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4307), 1, - anon_sym_RPAREN, - STATE(2502), 1, - sym_text_interpolation, - [71801] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(828), 1, - anon_sym_SEMI, - ACTIONS(1413), 1, - sym_comment, - STATE(2503), 1, - sym_text_interpolation, - [71814] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4309), 1, - sym_name, - STATE(2504), 1, - sym_text_interpolation, - [71827] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4311), 1, - anon_sym_EQ_GT, - STATE(2505), 1, - sym_text_interpolation, - [71840] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4313), 1, - anon_sym_SEMI, - STATE(2506), 1, - sym_text_interpolation, - [71853] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(4315), 1, - aux_sym_string_token2, - STATE(2507), 1, - sym_text_interpolation, - [71866] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4317), 1, - anon_sym_LPAREN, - STATE(2508), 1, - sym_text_interpolation, - [71879] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4319), 1, - anon_sym_SEMI, - STATE(2509), 1, - sym_text_interpolation, - [71892] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4321), 1, - sym_name, - STATE(2510), 1, - sym_text_interpolation, - [71905] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4323), 1, - anon_sym_LPAREN, - STATE(2511), 1, - sym_text_interpolation, - [71918] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4325), 1, - anon_sym_LPAREN, - STATE(2512), 1, - sym_text_interpolation, - [71931] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4327), 1, - aux_sym_class_declaration_token1, - STATE(2513), 1, - sym_text_interpolation, - [71944] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4329), 1, - sym_name, - STATE(2514), 1, - sym_text_interpolation, - [71957] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4331), 1, - anon_sym_SEMI, - STATE(2515), 1, - sym_text_interpolation, - [71970] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4333), 1, - sym_name, - STATE(2516), 1, - sym_text_interpolation, - [71983] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4335), 1, - anon_sym_LPAREN, - STATE(2517), 1, - sym_text_interpolation, - [71996] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4337), 1, - ts_builtin_sym_end, - STATE(2518), 1, - sym_text_interpolation, - [72009] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4339), 1, - anon_sym_LPAREN, - STATE(2519), 1, - sym_text_interpolation, - [72022] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4341), 1, - anon_sym_LPAREN, - STATE(2520), 1, - sym_text_interpolation, - [72035] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4343), 1, - anon_sym_LPAREN, - STATE(2521), 1, - sym_text_interpolation, - [72048] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4345), 1, - anon_sym_LPAREN, - STATE(2522), 1, - sym_text_interpolation, - [72061] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1413), 1, - sym_comment, - ACTIONS(4347), 1, - anon_sym_LPAREN, - STATE(2523), 1, - sym_text_interpolation, - [72074] = 1, - ACTIONS(4349), 1, - ts_builtin_sym_end, - [72078] = 1, - ACTIONS(4351), 1, - ts_builtin_sym_end, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(594)] = 0, - [SMALL_STATE(595)] = 87, - [SMALL_STATE(596)] = 166, - [SMALL_STATE(597)] = 245, - [SMALL_STATE(598)] = 324, - [SMALL_STATE(599)] = 403, - [SMALL_STATE(600)] = 482, - [SMALL_STATE(601)] = 556, - [SMALL_STATE(602)] = 630, - [SMALL_STATE(603)] = 704, - [SMALL_STATE(604)] = 778, - [SMALL_STATE(605)] = 852, - [SMALL_STATE(606)] = 926, - [SMALL_STATE(607)] = 1000, - [SMALL_STATE(608)] = 1074, - [SMALL_STATE(609)] = 1148, - [SMALL_STATE(610)] = 1222, - [SMALL_STATE(611)] = 1296, - [SMALL_STATE(612)] = 1370, - [SMALL_STATE(613)] = 1444, - [SMALL_STATE(614)] = 1529, - [SMALL_STATE(615)] = 1614, - [SMALL_STATE(616)] = 1695, - [SMALL_STATE(617)] = 1779, - [SMALL_STATE(618)] = 1863, - [SMALL_STATE(619)] = 1942, - [SMALL_STATE(620)] = 2025, - [SMALL_STATE(621)] = 2100, - [SMALL_STATE(622)] = 2179, - [SMALL_STATE(623)] = 2254, - [SMALL_STATE(624)] = 2337, - [SMALL_STATE(625)] = 2420, - [SMALL_STATE(626)] = 2495, - [SMALL_STATE(627)] = 2584, - [SMALL_STATE(628)] = 2667, - [SMALL_STATE(629)] = 2742, - [SMALL_STATE(630)] = 2817, - [SMALL_STATE(631)] = 2887, - [SMALL_STATE(632)] = 2957, - [SMALL_STATE(633)] = 3027, - [SMALL_STATE(634)] = 3097, - [SMALL_STATE(635)] = 3181, - [SMALL_STATE(636)] = 3259, - [SMALL_STATE(637)] = 3329, - [SMALL_STATE(638)] = 3407, - [SMALL_STATE(639)] = 3489, - [SMALL_STATE(640)] = 3559, - [SMALL_STATE(641)] = 3629, - [SMALL_STATE(642)] = 3699, - [SMALL_STATE(643)] = 3769, - [SMALL_STATE(644)] = 3839, - [SMALL_STATE(645)] = 3923, - [SMALL_STATE(646)] = 4005, - [SMALL_STATE(647)] = 4075, - [SMALL_STATE(648)] = 4145, - [SMALL_STATE(649)] = 4215, - [SMALL_STATE(650)] = 4285, - [SMALL_STATE(651)] = 4355, - [SMALL_STATE(652)] = 4439, - [SMALL_STATE(653)] = 4509, - [SMALL_STATE(654)] = 4579, - [SMALL_STATE(655)] = 4656, - [SMALL_STATE(656)] = 4733, - [SMALL_STATE(657)] = 4810, - [SMALL_STATE(658)] = 4893, - [SMALL_STATE(659)] = 4976, - [SMALL_STATE(660)] = 5053, - [SMALL_STATE(661)] = 5131, - [SMALL_STATE(662)] = 5209, - [SMALL_STATE(663)] = 5285, - [SMALL_STATE(664)] = 5361, - [SMALL_STATE(665)] = 5439, - [SMALL_STATE(666)] = 5516, - [SMALL_STATE(667)] = 5585, - [SMALL_STATE(668)] = 5652, - [SMALL_STATE(669)] = 5723, - [SMALL_STATE(670)] = 5784, - [SMALL_STATE(671)] = 5855, - [SMALL_STATE(672)] = 5926, - [SMALL_STATE(673)] = 5986, - [SMALL_STATE(674)] = 6050, - [SMALL_STATE(675)] = 6113, - [SMALL_STATE(676)] = 6178, - [SMALL_STATE(677)] = 6239, - [SMALL_STATE(678)] = 6304, - [SMALL_STATE(679)] = 6367, - [SMALL_STATE(680)] = 6430, - [SMALL_STATE(681)] = 6491, - [SMALL_STATE(682)] = 6552, - [SMALL_STATE(683)] = 6615, - [SMALL_STATE(684)] = 6676, - [SMALL_STATE(685)] = 6739, - [SMALL_STATE(686)] = 6802, - [SMALL_STATE(687)] = 6863, - [SMALL_STATE(688)] = 6926, - [SMALL_STATE(689)] = 6989, - [SMALL_STATE(690)] = 7052, - [SMALL_STATE(691)] = 7117, - [SMALL_STATE(692)] = 7182, - [SMALL_STATE(693)] = 7245, - [SMALL_STATE(694)] = 7308, - [SMALL_STATE(695)] = 7373, - [SMALL_STATE(696)] = 7434, - [SMALL_STATE(697)] = 7499, - [SMALL_STATE(698)] = 7564, - [SMALL_STATE(699)] = 7629, - [SMALL_STATE(700)] = 7692, - [SMALL_STATE(701)] = 7757, - [SMALL_STATE(702)] = 7822, - [SMALL_STATE(703)] = 7880, - [SMALL_STATE(704)] = 7938, - [SMALL_STATE(705)] = 7996, - [SMALL_STATE(706)] = 8054, - [SMALL_STATE(707)] = 8112, - [SMALL_STATE(708)] = 8170, - [SMALL_STATE(709)] = 8228, - [SMALL_STATE(710)] = 8286, - [SMALL_STATE(711)] = 8344, - [SMALL_STATE(712)] = 8402, - [SMALL_STATE(713)] = 8462, - [SMALL_STATE(714)] = 8520, - [SMALL_STATE(715)] = 8578, - [SMALL_STATE(716)] = 8636, - [SMALL_STATE(717)] = 8694, - [SMALL_STATE(718)] = 8752, - [SMALL_STATE(719)] = 8810, - [SMALL_STATE(720)] = 8868, - [SMALL_STATE(721)] = 8926, - [SMALL_STATE(722)] = 8984, - [SMALL_STATE(723)] = 9044, - [SMALL_STATE(724)] = 9102, - [SMALL_STATE(725)] = 9160, - [SMALL_STATE(726)] = 9218, - [SMALL_STATE(727)] = 9276, - [SMALL_STATE(728)] = 9334, - [SMALL_STATE(729)] = 9392, - [SMALL_STATE(730)] = 9450, - [SMALL_STATE(731)] = 9508, - [SMALL_STATE(732)] = 9566, - [SMALL_STATE(733)] = 9624, - [SMALL_STATE(734)] = 9681, - [SMALL_STATE(735)] = 9746, - [SMALL_STATE(736)] = 9805, - [SMALL_STATE(737)] = 9904, - [SMALL_STATE(738)] = 9971, - [SMALL_STATE(739)] = 10038, - [SMALL_STATE(740)] = 10101, - [SMALL_STATE(741)] = 10206, - [SMALL_STATE(742)] = 10307, - [SMALL_STATE(743)] = 10412, - [SMALL_STATE(744)] = 10471, - [SMALL_STATE(745)] = 10532, - [SMALL_STATE(746)] = 10637, - [SMALL_STATE(747)] = 10696, - [SMALL_STATE(748)] = 10799, - [SMALL_STATE(749)] = 10902, - [SMALL_STATE(750)] = 10961, - [SMALL_STATE(751)] = 11062, - [SMALL_STATE(752)] = 11121, - [SMALL_STATE(753)] = 11178, - [SMALL_STATE(754)] = 11283, - [SMALL_STATE(755)] = 11350, - [SMALL_STATE(756)] = 11418, - [SMALL_STATE(757)] = 11520, - [SMALL_STATE(758)] = 11588, - [SMALL_STATE(759)] = 11644, - [SMALL_STATE(760)] = 11712, - [SMALL_STATE(761)] = 11814, - [SMALL_STATE(762)] = 11916, - [SMALL_STATE(763)] = 11975, - [SMALL_STATE(764)] = 12032, - [SMALL_STATE(765)] = 12091, - [SMALL_STATE(766)] = 12150, - [SMALL_STATE(767)] = 12211, - [SMALL_STATE(768)] = 12270, - [SMALL_STATE(769)] = 12331, - [SMALL_STATE(770)] = 12392, - [SMALL_STATE(771)] = 12453, - [SMALL_STATE(772)] = 12512, - [SMALL_STATE(773)] = 12611, - [SMALL_STATE(774)] = 12670, - [SMALL_STATE(775)] = 12725, - [SMALL_STATE(776)] = 12784, - [SMALL_STATE(777)] = 12839, - [SMALL_STATE(778)] = 12900, - [SMALL_STATE(779)] = 12999, - [SMALL_STATE(780)] = 13060, - [SMALL_STATE(781)] = 13121, - [SMALL_STATE(782)] = 13182, - [SMALL_STATE(783)] = 13241, - [SMALL_STATE(784)] = 13302, - [SMALL_STATE(785)] = 13357, - [SMALL_STATE(786)] = 13456, - [SMALL_STATE(787)] = 13513, - [SMALL_STATE(788)] = 13570, - [SMALL_STATE(789)] = 13627, - [SMALL_STATE(790)] = 13682, - [SMALL_STATE(791)] = 13739, - [SMALL_STATE(792)] = 13798, - [SMALL_STATE(793)] = 13857, - [SMALL_STATE(794)] = 13916, - [SMALL_STATE(795)] = 13975, - [SMALL_STATE(796)] = 14032, - [SMALL_STATE(797)] = 14131, - [SMALL_STATE(798)] = 14188, - [SMALL_STATE(799)] = 14249, - [SMALL_STATE(800)] = 14303, - [SMALL_STATE(801)] = 14359, - [SMALL_STATE(802)] = 14413, - [SMALL_STATE(803)] = 14467, - [SMALL_STATE(804)] = 14521, - [SMALL_STATE(805)] = 14575, - [SMALL_STATE(806)] = 14629, - [SMALL_STATE(807)] = 14683, - [SMALL_STATE(808)] = 14779, - [SMALL_STATE(809)] = 14833, - [SMALL_STATE(810)] = 14889, - [SMALL_STATE(811)] = 14943, - [SMALL_STATE(812)] = 14997, - [SMALL_STATE(813)] = 15051, - [SMALL_STATE(814)] = 15105, - [SMALL_STATE(815)] = 15159, - [SMALL_STATE(816)] = 15213, - [SMALL_STATE(817)] = 15267, - [SMALL_STATE(818)] = 15321, - [SMALL_STATE(819)] = 15375, - [SMALL_STATE(820)] = 15429, - [SMALL_STATE(821)] = 15483, - [SMALL_STATE(822)] = 15537, - [SMALL_STATE(823)] = 15591, - [SMALL_STATE(824)] = 15645, - [SMALL_STATE(825)] = 15699, - [SMALL_STATE(826)] = 15753, - [SMALL_STATE(827)] = 15811, - [SMALL_STATE(828)] = 15865, - [SMALL_STATE(829)] = 15919, - [SMALL_STATE(830)] = 15975, - [SMALL_STATE(831)] = 16029, - [SMALL_STATE(832)] = 16083, - [SMALL_STATE(833)] = 16137, - [SMALL_STATE(834)] = 16230, - [SMALL_STATE(835)] = 16323, - [SMALL_STATE(836)] = 16416, - [SMALL_STATE(837)] = 16509, - [SMALL_STATE(838)] = 16564, - [SMALL_STATE(839)] = 16657, - [SMALL_STATE(840)] = 16750, - [SMALL_STATE(841)] = 16843, - [SMALL_STATE(842)] = 16936, - [SMALL_STATE(843)] = 17029, - [SMALL_STATE(844)] = 17084, - [SMALL_STATE(845)] = 17177, - [SMALL_STATE(846)] = 17232, - [SMALL_STATE(847)] = 17287, - [SMALL_STATE(848)] = 17380, - [SMALL_STATE(849)] = 17473, - [SMALL_STATE(850)] = 17566, - [SMALL_STATE(851)] = 17621, - [SMALL_STATE(852)] = 17714, - [SMALL_STATE(853)] = 17807, - [SMALL_STATE(854)] = 17859, - [SMALL_STATE(855)] = 17911, - [SMALL_STATE(856)] = 17963, - [SMALL_STATE(857)] = 18015, - [SMALL_STATE(858)] = 18067, - [SMALL_STATE(859)] = 18121, - [SMALL_STATE(860)] = 18173, - [SMALL_STATE(861)] = 18225, - [SMALL_STATE(862)] = 18277, - [SMALL_STATE(863)] = 18329, - [SMALL_STATE(864)] = 18381, - [SMALL_STATE(865)] = 18433, - [SMALL_STATE(866)] = 18485, - [SMALL_STATE(867)] = 18537, - [SMALL_STATE(868)] = 18589, - [SMALL_STATE(869)] = 18641, - [SMALL_STATE(870)] = 18693, - [SMALL_STATE(871)] = 18745, - [SMALL_STATE(872)] = 18797, - [SMALL_STATE(873)] = 18849, - [SMALL_STATE(874)] = 18901, - [SMALL_STATE(875)] = 18953, - [SMALL_STATE(876)] = 19005, - [SMALL_STATE(877)] = 19057, - [SMALL_STATE(878)] = 19109, - [SMALL_STATE(879)] = 19161, - [SMALL_STATE(880)] = 19213, - [SMALL_STATE(881)] = 19265, - [SMALL_STATE(882)] = 19317, - [SMALL_STATE(883)] = 19369, - [SMALL_STATE(884)] = 19421, - [SMALL_STATE(885)] = 19473, - [SMALL_STATE(886)] = 19525, - [SMALL_STATE(887)] = 19577, - [SMALL_STATE(888)] = 19629, - [SMALL_STATE(889)] = 19681, - [SMALL_STATE(890)] = 19733, - [SMALL_STATE(891)] = 19785, - [SMALL_STATE(892)] = 19837, - [SMALL_STATE(893)] = 19889, - [SMALL_STATE(894)] = 19941, - [SMALL_STATE(895)] = 19993, - [SMALL_STATE(896)] = 20045, - [SMALL_STATE(897)] = 20097, - [SMALL_STATE(898)] = 20149, - [SMALL_STATE(899)] = 20201, - [SMALL_STATE(900)] = 20253, - [SMALL_STATE(901)] = 20305, - [SMALL_STATE(902)] = 20357, - [SMALL_STATE(903)] = 20409, - [SMALL_STATE(904)] = 20461, - [SMALL_STATE(905)] = 20513, - [SMALL_STATE(906)] = 20565, - [SMALL_STATE(907)] = 20617, - [SMALL_STATE(908)] = 20669, - [SMALL_STATE(909)] = 20721, - [SMALL_STATE(910)] = 20773, - [SMALL_STATE(911)] = 20825, - [SMALL_STATE(912)] = 20877, - [SMALL_STATE(913)] = 20929, - [SMALL_STATE(914)] = 20981, - [SMALL_STATE(915)] = 21032, - [SMALL_STATE(916)] = 21083, - [SMALL_STATE(917)] = 21135, - [SMALL_STATE(918)] = 21221, - [SMALL_STATE(919)] = 21307, - [SMALL_STATE(920)] = 21393, - [SMALL_STATE(921)] = 21479, - [SMALL_STATE(922)] = 21531, - [SMALL_STATE(923)] = 21617, - [SMALL_STATE(924)] = 21703, - [SMALL_STATE(925)] = 21789, - [SMALL_STATE(926)] = 21875, - [SMALL_STATE(927)] = 21961, - [SMALL_STATE(928)] = 22041, - [SMALL_STATE(929)] = 22121, - [SMALL_STATE(930)] = 22179, - [SMALL_STATE(931)] = 22235, - [SMALL_STATE(932)] = 22321, - [SMALL_STATE(933)] = 22381, - [SMALL_STATE(934)] = 22467, - [SMALL_STATE(935)] = 22531, - [SMALL_STATE(936)] = 22601, - [SMALL_STATE(937)] = 22687, - [SMALL_STATE(938)] = 22773, - [SMALL_STATE(939)] = 22847, - [SMALL_STATE(940)] = 22923, - [SMALL_STATE(941)] = 23005, - [SMALL_STATE(942)] = 23091, - [SMALL_STATE(943)] = 23175, - [SMALL_STATE(944)] = 23255, - [SMALL_STATE(945)] = 23335, - [SMALL_STATE(946)] = 23389, - [SMALL_STATE(947)] = 23461, - [SMALL_STATE(948)] = 23529, - [SMALL_STATE(949)] = 23615, - [SMALL_STATE(950)] = 23695, - [SMALL_STATE(951)] = 23775, - [SMALL_STATE(952)] = 23861, - [SMALL_STATE(953)] = 23947, - [SMALL_STATE(954)] = 24033, - [SMALL_STATE(955)] = 24119, - [SMALL_STATE(956)] = 24205, - [SMALL_STATE(957)] = 24291, - [SMALL_STATE(958)] = 24377, - [SMALL_STATE(959)] = 24465, - [SMALL_STATE(960)] = 24545, - [SMALL_STATE(961)] = 24631, - [SMALL_STATE(962)] = 24717, - [SMALL_STATE(963)] = 24803, - [SMALL_STATE(964)] = 24889, - [SMALL_STATE(965)] = 24941, - [SMALL_STATE(966)] = 25026, - [SMALL_STATE(967)] = 25093, - [SMALL_STATE(968)] = 25178, - [SMALL_STATE(969)] = 25263, - [SMALL_STATE(970)] = 25348, - [SMALL_STATE(971)] = 25399, - [SMALL_STATE(972)] = 25484, - [SMALL_STATE(973)] = 25535, - [SMALL_STATE(974)] = 25620, - [SMALL_STATE(975)] = 25705, - [SMALL_STATE(976)] = 25790, - [SMALL_STATE(977)] = 25875, - [SMALL_STATE(978)] = 25960, - [SMALL_STATE(979)] = 26045, - [SMALL_STATE(980)] = 26130, - [SMALL_STATE(981)] = 26215, - [SMALL_STATE(982)] = 26300, - [SMALL_STATE(983)] = 26385, - [SMALL_STATE(984)] = 26464, - [SMALL_STATE(985)] = 26549, - [SMALL_STATE(986)] = 26636, - [SMALL_STATE(987)] = 26721, - [SMALL_STATE(988)] = 26806, - [SMALL_STATE(989)] = 26891, - [SMALL_STATE(990)] = 26976, - [SMALL_STATE(991)] = 27061, - [SMALL_STATE(992)] = 27146, - [SMALL_STATE(993)] = 27225, - [SMALL_STATE(994)] = 27304, - [SMALL_STATE(995)] = 27389, - [SMALL_STATE(996)] = 27468, - [SMALL_STATE(997)] = 27547, - [SMALL_STATE(998)] = 27604, - [SMALL_STATE(999)] = 27659, - [SMALL_STATE(1000)] = 27718, - [SMALL_STATE(1001)] = 27781, - [SMALL_STATE(1002)] = 27850, - [SMALL_STATE(1003)] = 27923, - [SMALL_STATE(1004)] = 28008, - [SMALL_STATE(1005)] = 28083, - [SMALL_STATE(1006)] = 28164, - [SMALL_STATE(1007)] = 28249, - [SMALL_STATE(1008)] = 28332, - [SMALL_STATE(1009)] = 28411, - [SMALL_STATE(1010)] = 28490, - [SMALL_STATE(1011)] = 28543, - [SMALL_STATE(1012)] = 28628, - [SMALL_STATE(1013)] = 28699, - [SMALL_STATE(1014)] = 28750, - [SMALL_STATE(1015)] = 28834, - [SMALL_STATE(1016)] = 28882, - [SMALL_STATE(1017)] = 28930, - [SMALL_STATE(1018)] = 29016, - [SMALL_STATE(1019)] = 29100, - [SMALL_STATE(1020)] = 29184, - [SMALL_STATE(1021)] = 29268, - [SMALL_STATE(1022)] = 29316, - [SMALL_STATE(1023)] = 29364, - [SMALL_STATE(1024)] = 29412, - [SMALL_STATE(1025)] = 29460, - [SMALL_STATE(1026)] = 29508, - [SMALL_STATE(1027)] = 29556, - [SMALL_STATE(1028)] = 29604, - [SMALL_STATE(1029)] = 29652, - [SMALL_STATE(1030)] = 29736, - [SMALL_STATE(1031)] = 29814, - [SMALL_STATE(1032)] = 29892, - [SMALL_STATE(1033)] = 29940, - [SMALL_STATE(1034)] = 29988, - [SMALL_STATE(1035)] = 30036, - [SMALL_STATE(1036)] = 30092, - [SMALL_STATE(1037)] = 30140, - [SMALL_STATE(1038)] = 30194, - [SMALL_STATE(1039)] = 30252, - [SMALL_STATE(1040)] = 30300, - [SMALL_STATE(1041)] = 30362, - [SMALL_STATE(1042)] = 30446, - [SMALL_STATE(1043)] = 30494, - [SMALL_STATE(1044)] = 30578, - [SMALL_STATE(1045)] = 30662, - [SMALL_STATE(1046)] = 30746, - [SMALL_STATE(1047)] = 30830, - [SMALL_STATE(1048)] = 30898, - [SMALL_STATE(1049)] = 30946, - [SMALL_STATE(1050)] = 31030, - [SMALL_STATE(1051)] = 31078, - [SMALL_STATE(1052)] = 31126, - [SMALL_STATE(1053)] = 31174, - [SMALL_STATE(1054)] = 31222, - [SMALL_STATE(1055)] = 31270, - [SMALL_STATE(1056)] = 31318, - [SMALL_STATE(1057)] = 31366, - [SMALL_STATE(1058)] = 31450, - [SMALL_STATE(1059)] = 31498, - [SMALL_STATE(1060)] = 31582, - [SMALL_STATE(1061)] = 31630, - [SMALL_STATE(1062)] = 31678, - [SMALL_STATE(1063)] = 31728, - [SMALL_STATE(1064)] = 31812, - [SMALL_STATE(1065)] = 31860, - [SMALL_STATE(1066)] = 31944, - [SMALL_STATE(1067)] = 32028, - [SMALL_STATE(1068)] = 32078, - [SMALL_STATE(1069)] = 32150, - [SMALL_STATE(1070)] = 32198, - [SMALL_STATE(1071)] = 32282, - [SMALL_STATE(1072)] = 32332, - [SMALL_STATE(1073)] = 32380, - [SMALL_STATE(1074)] = 32428, - [SMALL_STATE(1075)] = 32512, - [SMALL_STATE(1076)] = 32560, - [SMALL_STATE(1077)] = 32608, - [SMALL_STATE(1078)] = 32656, - [SMALL_STATE(1079)] = 32704, - [SMALL_STATE(1080)] = 32752, - [SMALL_STATE(1081)] = 32800, - [SMALL_STATE(1082)] = 32874, - [SMALL_STATE(1083)] = 32922, - [SMALL_STATE(1084)] = 33002, - [SMALL_STATE(1085)] = 33050, - [SMALL_STATE(1086)] = 33132, - [SMALL_STATE(1087)] = 33216, - [SMALL_STATE(1088)] = 33264, - [SMALL_STATE(1089)] = 33342, - [SMALL_STATE(1090)] = 33390, - [SMALL_STATE(1091)] = 33438, - [SMALL_STATE(1092)] = 33486, - [SMALL_STATE(1093)] = 33564, - [SMALL_STATE(1094)] = 33612, - [SMALL_STATE(1095)] = 33696, - [SMALL_STATE(1096)] = 33744, - [SMALL_STATE(1097)] = 33792, - [SMALL_STATE(1098)] = 33876, - [SMALL_STATE(1099)] = 33924, - [SMALL_STATE(1100)] = 34008, - [SMALL_STATE(1101)] = 34056, - [SMALL_STATE(1102)] = 34134, - [SMALL_STATE(1103)] = 34212, - [SMALL_STATE(1104)] = 34290, - [SMALL_STATE(1105)] = 34374, - [SMALL_STATE(1106)] = 34422, - [SMALL_STATE(1107)] = 34470, - [SMALL_STATE(1108)] = 34522, - [SMALL_STATE(1109)] = 34606, - [SMALL_STATE(1110)] = 34654, - [SMALL_STATE(1111)] = 34702, - [SMALL_STATE(1112)] = 34750, - [SMALL_STATE(1113)] = 34798, - [SMALL_STATE(1114)] = 34846, - [SMALL_STATE(1115)] = 34894, - [SMALL_STATE(1116)] = 34978, - [SMALL_STATE(1117)] = 35048, - [SMALL_STATE(1118)] = 35132, - [SMALL_STATE(1119)] = 35180, - [SMALL_STATE(1120)] = 35228, - [SMALL_STATE(1121)] = 35294, - [SMALL_STATE(1122)] = 35342, - [SMALL_STATE(1123)] = 35392, - [SMALL_STATE(1124)] = 35440, - [SMALL_STATE(1125)] = 35488, - [SMALL_STATE(1126)] = 35536, - [SMALL_STATE(1127)] = 35615, - [SMALL_STATE(1128)] = 35668, - [SMALL_STATE(1129)] = 35751, - [SMALL_STATE(1130)] = 35834, - [SMALL_STATE(1131)] = 35917, - [SMALL_STATE(1132)] = 36000, - [SMALL_STATE(1133)] = 36083, - [SMALL_STATE(1134)] = 36166, - [SMALL_STATE(1135)] = 36249, - [SMALL_STATE(1136)] = 36332, - [SMALL_STATE(1137)] = 36415, - [SMALL_STATE(1138)] = 36498, - [SMALL_STATE(1139)] = 36575, - [SMALL_STATE(1140)] = 36658, - [SMALL_STATE(1141)] = 36741, - [SMALL_STATE(1142)] = 36824, - [SMALL_STATE(1143)] = 36901, - [SMALL_STATE(1144)] = 36978, - [SMALL_STATE(1145)] = 37061, - [SMALL_STATE(1146)] = 37138, - [SMALL_STATE(1147)] = 37215, - [SMALL_STATE(1148)] = 37270, - [SMALL_STATE(1149)] = 37353, - [SMALL_STATE(1150)] = 37436, - [SMALL_STATE(1151)] = 37493, - [SMALL_STATE(1152)] = 37558, - [SMALL_STATE(1153)] = 37641, - [SMALL_STATE(1154)] = 37702, - [SMALL_STATE(1155)] = 37769, - [SMALL_STATE(1156)] = 37840, - [SMALL_STATE(1157)] = 37923, - [SMALL_STATE(1158)] = 37972, - [SMALL_STATE(1159)] = 38045, - [SMALL_STATE(1160)] = 38094, - [SMALL_STATE(1161)] = 38175, - [SMALL_STATE(1162)] = 38258, - [SMALL_STATE(1163)] = 38335, - [SMALL_STATE(1164)] = 38418, - [SMALL_STATE(1165)] = 38495, - [SMALL_STATE(1166)] = 38578, - [SMALL_STATE(1167)] = 38629, - [SMALL_STATE(1168)] = 38678, - [SMALL_STATE(1169)] = 38761, - [SMALL_STATE(1170)] = 38846, - [SMALL_STATE(1171)] = 38929, - [SMALL_STATE(1172)] = 39012, - [SMALL_STATE(1173)] = 39095, - [SMALL_STATE(1174)] = 39164, - [SMALL_STATE(1175)] = 39247, - [SMALL_STATE(1176)] = 39332, - [SMALL_STATE(1177)] = 39415, - [SMALL_STATE(1178)] = 39496, - [SMALL_STATE(1179)] = 39579, - [SMALL_STATE(1180)] = 39662, - [SMALL_STATE(1181)] = 39743, - [SMALL_STATE(1182)] = 39826, - [SMALL_STATE(1183)] = 39907, - [SMALL_STATE(1184)] = 39966, - [SMALL_STATE(1185)] = 40049, - [SMALL_STATE(1186)] = 40129, - [SMALL_STATE(1187)] = 40209, - [SMALL_STATE(1188)] = 40289, - [SMALL_STATE(1189)] = 40369, - [SMALL_STATE(1190)] = 40449, - [SMALL_STATE(1191)] = 40529, - [SMALL_STATE(1192)] = 40609, - [SMALL_STATE(1193)] = 40689, - [SMALL_STATE(1194)] = 40769, - [SMALL_STATE(1195)] = 40843, - [SMALL_STATE(1196)] = 40923, - [SMALL_STATE(1197)] = 41003, - [SMALL_STATE(1198)] = 41085, - [SMALL_STATE(1199)] = 41167, - [SMALL_STATE(1200)] = 41247, - [SMALL_STATE(1201)] = 41327, - [SMALL_STATE(1202)] = 41407, - [SMALL_STATE(1203)] = 41489, - [SMALL_STATE(1204)] = 41571, - [SMALL_STATE(1205)] = 41651, - [SMALL_STATE(1206)] = 41731, - [SMALL_STATE(1207)] = 41813, - [SMALL_STATE(1208)] = 41893, - [SMALL_STATE(1209)] = 41975, - [SMALL_STATE(1210)] = 42055, - [SMALL_STATE(1211)] = 42137, - [SMALL_STATE(1212)] = 42217, - [SMALL_STATE(1213)] = 42297, - [SMALL_STATE(1214)] = 42377, - [SMALL_STATE(1215)] = 42457, - [SMALL_STATE(1216)] = 42537, - [SMALL_STATE(1217)] = 42619, - [SMALL_STATE(1218)] = 42699, - [SMALL_STATE(1219)] = 42779, - [SMALL_STATE(1220)] = 42859, - [SMALL_STATE(1221)] = 42938, - [SMALL_STATE(1222)] = 43017, - [SMALL_STATE(1223)] = 43096, - [SMALL_STATE(1224)] = 43175, - [SMALL_STATE(1225)] = 43254, - [SMALL_STATE(1226)] = 43333, - [SMALL_STATE(1227)] = 43412, - [SMALL_STATE(1228)] = 43491, - [SMALL_STATE(1229)] = 43570, - [SMALL_STATE(1230)] = 43649, - [SMALL_STATE(1231)] = 43728, - [SMALL_STATE(1232)] = 43807, - [SMALL_STATE(1233)] = 43886, - [SMALL_STATE(1234)] = 43965, - [SMALL_STATE(1235)] = 44044, - [SMALL_STATE(1236)] = 44123, - [SMALL_STATE(1237)] = 44202, - [SMALL_STATE(1238)] = 44281, - [SMALL_STATE(1239)] = 44360, - [SMALL_STATE(1240)] = 44439, - [SMALL_STATE(1241)] = 44518, - [SMALL_STATE(1242)] = 44597, - [SMALL_STATE(1243)] = 44676, - [SMALL_STATE(1244)] = 44755, - [SMALL_STATE(1245)] = 44834, - [SMALL_STATE(1246)] = 44913, - [SMALL_STATE(1247)] = 44992, - [SMALL_STATE(1248)] = 45071, - [SMALL_STATE(1249)] = 45150, - [SMALL_STATE(1250)] = 45229, - [SMALL_STATE(1251)] = 45308, - [SMALL_STATE(1252)] = 45387, - [SMALL_STATE(1253)] = 45466, - [SMALL_STATE(1254)] = 45545, - [SMALL_STATE(1255)] = 45624, - [SMALL_STATE(1256)] = 45703, - [SMALL_STATE(1257)] = 45782, - [SMALL_STATE(1258)] = 45861, - [SMALL_STATE(1259)] = 45940, - [SMALL_STATE(1260)] = 46019, - [SMALL_STATE(1261)] = 46098, - [SMALL_STATE(1262)] = 46177, - [SMALL_STATE(1263)] = 46256, - [SMALL_STATE(1264)] = 46335, - [SMALL_STATE(1265)] = 46414, - [SMALL_STATE(1266)] = 46493, - [SMALL_STATE(1267)] = 46572, - [SMALL_STATE(1268)] = 46651, - [SMALL_STATE(1269)] = 46730, - [SMALL_STATE(1270)] = 46814, - [SMALL_STATE(1271)] = 46898, - [SMALL_STATE(1272)] = 46982, - [SMALL_STATE(1273)] = 47066, - [SMALL_STATE(1274)] = 47150, - [SMALL_STATE(1275)] = 47198, - [SMALL_STATE(1276)] = 47246, - [SMALL_STATE(1277)] = 47330, - [SMALL_STATE(1278)] = 47414, - [SMALL_STATE(1279)] = 47496, - [SMALL_STATE(1280)] = 47580, - [SMALL_STATE(1281)] = 47645, - [SMALL_STATE(1282)] = 47686, - [SMALL_STATE(1283)] = 47760, - [SMALL_STATE(1284)] = 47834, - [SMALL_STATE(1285)] = 47874, - [SMALL_STATE(1286)] = 47916, - [SMALL_STATE(1287)] = 47990, - [SMALL_STATE(1288)] = 48062, - [SMALL_STATE(1289)] = 48102, - [SMALL_STATE(1290)] = 48176, - [SMALL_STATE(1291)] = 48235, - [SMALL_STATE(1292)] = 48294, - [SMALL_STATE(1293)] = 48353, - [SMALL_STATE(1294)] = 48392, - [SMALL_STATE(1295)] = 48431, - [SMALL_STATE(1296)] = 48490, - [SMALL_STATE(1297)] = 48549, - [SMALL_STATE(1298)] = 48588, - [SMALL_STATE(1299)] = 48647, - [SMALL_STATE(1300)] = 48700, - [SMALL_STATE(1301)] = 48753, - [SMALL_STATE(1302)] = 48806, - [SMALL_STATE(1303)] = 48843, - [SMALL_STATE(1304)] = 48882, - [SMALL_STATE(1305)] = 48928, - [SMALL_STATE(1306)] = 48962, - [SMALL_STATE(1307)] = 48996, - [SMALL_STATE(1308)] = 49042, - [SMALL_STATE(1309)] = 49088, - [SMALL_STATE(1310)] = 49120, - [SMALL_STATE(1311)] = 49175, - [SMALL_STATE(1312)] = 49223, - [SMALL_STATE(1313)] = 49253, - [SMALL_STATE(1314)] = 49282, - [SMALL_STATE(1315)] = 49313, - [SMALL_STATE(1316)] = 49358, - [SMALL_STATE(1317)] = 49403, - [SMALL_STATE(1318)] = 49447, - [SMALL_STATE(1319)] = 49473, - [SMALL_STATE(1320)] = 49519, - [SMALL_STATE(1321)] = 49565, - [SMALL_STATE(1322)] = 49611, - [SMALL_STATE(1323)] = 49657, - [SMALL_STATE(1324)] = 49697, - [SMALL_STATE(1325)] = 49723, - [SMALL_STATE(1326)] = 49748, - [SMALL_STATE(1327)] = 49773, - [SMALL_STATE(1328)] = 49798, - [SMALL_STATE(1329)] = 49823, - [SMALL_STATE(1330)] = 49848, - [SMALL_STATE(1331)] = 49889, - [SMALL_STATE(1332)] = 49914, - [SMALL_STATE(1333)] = 49939, - [SMALL_STATE(1334)] = 49964, - [SMALL_STATE(1335)] = 49989, - [SMALL_STATE(1336)] = 50014, - [SMALL_STATE(1337)] = 50039, - [SMALL_STATE(1338)] = 50064, - [SMALL_STATE(1339)] = 50105, - [SMALL_STATE(1340)] = 50130, - [SMALL_STATE(1341)] = 50155, - [SMALL_STATE(1342)] = 50180, - [SMALL_STATE(1343)] = 50205, - [SMALL_STATE(1344)] = 50230, - [SMALL_STATE(1345)] = 50255, - [SMALL_STATE(1346)] = 50279, - [SMALL_STATE(1347)] = 50303, - [SMALL_STATE(1348)] = 50327, - [SMALL_STATE(1349)] = 50351, - [SMALL_STATE(1350)] = 50375, - [SMALL_STATE(1351)] = 50399, - [SMALL_STATE(1352)] = 50423, - [SMALL_STATE(1353)] = 50447, - [SMALL_STATE(1354)] = 50471, - [SMALL_STATE(1355)] = 50495, - [SMALL_STATE(1356)] = 50519, - [SMALL_STATE(1357)] = 50543, - [SMALL_STATE(1358)] = 50567, - [SMALL_STATE(1359)] = 50591, - [SMALL_STATE(1360)] = 50627, - [SMALL_STATE(1361)] = 50651, - [SMALL_STATE(1362)] = 50675, - [SMALL_STATE(1363)] = 50699, - [SMALL_STATE(1364)] = 50723, - [SMALL_STATE(1365)] = 50747, - [SMALL_STATE(1366)] = 50771, - [SMALL_STATE(1367)] = 50795, - [SMALL_STATE(1368)] = 50819, - [SMALL_STATE(1369)] = 50843, - [SMALL_STATE(1370)] = 50867, - [SMALL_STATE(1371)] = 50904, - [SMALL_STATE(1372)] = 50939, - [SMALL_STATE(1373)] = 50976, - [SMALL_STATE(1374)] = 51013, - [SMALL_STATE(1375)] = 51048, - [SMALL_STATE(1376)] = 51085, - [SMALL_STATE(1377)] = 51122, - [SMALL_STATE(1378)] = 51163, - [SMALL_STATE(1379)] = 51200, - [SMALL_STATE(1380)] = 51235, - [SMALL_STATE(1381)] = 51276, - [SMALL_STATE(1382)] = 51302, - [SMALL_STATE(1383)] = 51336, - [SMALL_STATE(1384)] = 51366, - [SMALL_STATE(1385)] = 51390, - [SMALL_STATE(1386)] = 51424, - [SMALL_STATE(1387)] = 51458, - [SMALL_STATE(1388)] = 51492, - [SMALL_STATE(1389)] = 51526, - [SMALL_STATE(1390)] = 51558, - [SMALL_STATE(1391)] = 51590, - [SMALL_STATE(1392)] = 51622, - [SMALL_STATE(1393)] = 51650, - [SMALL_STATE(1394)] = 51679, - [SMALL_STATE(1395)] = 51706, - [SMALL_STATE(1396)] = 51735, - [SMALL_STATE(1397)] = 51766, - [SMALL_STATE(1398)] = 51797, - [SMALL_STATE(1399)] = 51824, - [SMALL_STATE(1400)] = 51855, - [SMALL_STATE(1401)] = 51884, - [SMALL_STATE(1402)] = 51913, - [SMALL_STATE(1403)] = 51942, - [SMALL_STATE(1404)] = 51971, - [SMALL_STATE(1405)] = 52002, - [SMALL_STATE(1406)] = 52031, - [SMALL_STATE(1407)] = 52060, - [SMALL_STATE(1408)] = 52089, - [SMALL_STATE(1409)] = 52118, - [SMALL_STATE(1410)] = 52147, - [SMALL_STATE(1411)] = 52180, - [SMALL_STATE(1412)] = 52209, - [SMALL_STATE(1413)] = 52238, - [SMALL_STATE(1414)] = 52269, - [SMALL_STATE(1415)] = 52300, - [SMALL_STATE(1416)] = 52329, - [SMALL_STATE(1417)] = 52362, - [SMALL_STATE(1418)] = 52391, - [SMALL_STATE(1419)] = 52420, - [SMALL_STATE(1420)] = 52449, - [SMALL_STATE(1421)] = 52480, - [SMALL_STATE(1422)] = 52511, - [SMALL_STATE(1423)] = 52542, - [SMALL_STATE(1424)] = 52569, - [SMALL_STATE(1425)] = 52598, - [SMALL_STATE(1426)] = 52627, - [SMALL_STATE(1427)] = 52656, - [SMALL_STATE(1428)] = 52687, - [SMALL_STATE(1429)] = 52716, - [SMALL_STATE(1430)] = 52745, - [SMALL_STATE(1431)] = 52776, - [SMALL_STATE(1432)] = 52802, - [SMALL_STATE(1433)] = 52836, - [SMALL_STATE(1434)] = 52856, - [SMALL_STATE(1435)] = 52876, - [SMALL_STATE(1436)] = 52896, - [SMALL_STATE(1437)] = 52922, - [SMALL_STATE(1438)] = 52950, - [SMALL_STATE(1439)] = 52984, - [SMALL_STATE(1440)] = 53018, - [SMALL_STATE(1441)] = 53038, - [SMALL_STATE(1442)] = 53070, - [SMALL_STATE(1443)] = 53104, - [SMALL_STATE(1444)] = 53134, - [SMALL_STATE(1445)] = 53168, - [SMALL_STATE(1446)] = 53188, - [SMALL_STATE(1447)] = 53214, - [SMALL_STATE(1448)] = 53240, - [SMALL_STATE(1449)] = 53266, - [SMALL_STATE(1450)] = 53286, - [SMALL_STATE(1451)] = 53320, - [SMALL_STATE(1452)] = 53340, - [SMALL_STATE(1453)] = 53359, - [SMALL_STATE(1454)] = 53380, - [SMALL_STATE(1455)] = 53401, - [SMALL_STATE(1456)] = 53420, - [SMALL_STATE(1457)] = 53443, - [SMALL_STATE(1458)] = 53470, - [SMALL_STATE(1459)] = 53497, - [SMALL_STATE(1460)] = 53518, - [SMALL_STATE(1461)] = 53543, - [SMALL_STATE(1462)] = 53564, - [SMALL_STATE(1463)] = 53587, - [SMALL_STATE(1464)] = 53610, - [SMALL_STATE(1465)] = 53633, - [SMALL_STATE(1466)] = 53654, - [SMALL_STATE(1467)] = 53677, - [SMALL_STATE(1468)] = 53700, - [SMALL_STATE(1469)] = 53731, - [SMALL_STATE(1470)] = 53752, - [SMALL_STATE(1471)] = 53773, - [SMALL_STATE(1472)] = 53794, - [SMALL_STATE(1473)] = 53815, - [SMALL_STATE(1474)] = 53842, - [SMALL_STATE(1475)] = 53865, - [SMALL_STATE(1476)] = 53886, - [SMALL_STATE(1477)] = 53905, - [SMALL_STATE(1478)] = 53928, - [SMALL_STATE(1479)] = 53949, - [SMALL_STATE(1480)] = 53976, - [SMALL_STATE(1481)] = 53997, - [SMALL_STATE(1482)] = 54018, - [SMALL_STATE(1483)] = 54041, - [SMALL_STATE(1484)] = 54064, - [SMALL_STATE(1485)] = 54085, - [SMALL_STATE(1486)] = 54112, - [SMALL_STATE(1487)] = 54135, - [SMALL_STATE(1488)] = 54154, - [SMALL_STATE(1489)] = 54177, - [SMALL_STATE(1490)] = 54200, - [SMALL_STATE(1491)] = 54221, - [SMALL_STATE(1492)] = 54244, - [SMALL_STATE(1493)] = 54270, - [SMALL_STATE(1494)] = 54298, - [SMALL_STATE(1495)] = 54326, - [SMALL_STATE(1496)] = 54352, - [SMALL_STATE(1497)] = 54380, - [SMALL_STATE(1498)] = 54406, - [SMALL_STATE(1499)] = 54430, - [SMALL_STATE(1500)] = 54458, - [SMALL_STATE(1501)] = 54486, - [SMALL_STATE(1502)] = 54514, - [SMALL_STATE(1503)] = 54542, - [SMALL_STATE(1504)] = 54570, - [SMALL_STATE(1505)] = 54596, - [SMALL_STATE(1506)] = 54624, - [SMALL_STATE(1507)] = 54652, - [SMALL_STATE(1508)] = 54680, - [SMALL_STATE(1509)] = 54708, - [SMALL_STATE(1510)] = 54732, - [SMALL_STATE(1511)] = 54758, - [SMALL_STATE(1512)] = 54786, - [SMALL_STATE(1513)] = 54806, - [SMALL_STATE(1514)] = 54834, - [SMALL_STATE(1515)] = 54860, - [SMALL_STATE(1516)] = 54886, - [SMALL_STATE(1517)] = 54914, - [SMALL_STATE(1518)] = 54942, - [SMALL_STATE(1519)] = 54970, - [SMALL_STATE(1520)] = 54998, - [SMALL_STATE(1521)] = 55024, - [SMALL_STATE(1522)] = 55050, - [SMALL_STATE(1523)] = 55078, - [SMALL_STATE(1524)] = 55106, - [SMALL_STATE(1525)] = 55128, - [SMALL_STATE(1526)] = 55154, - [SMALL_STATE(1527)] = 55178, - [SMALL_STATE(1528)] = 55206, - [SMALL_STATE(1529)] = 55234, - [SMALL_STATE(1530)] = 55260, - [SMALL_STATE(1531)] = 55288, - [SMALL_STATE(1532)] = 55306, - [SMALL_STATE(1533)] = 55328, - [SMALL_STATE(1534)] = 55354, - [SMALL_STATE(1535)] = 55382, - [SMALL_STATE(1536)] = 55410, - [SMALL_STATE(1537)] = 55434, - [SMALL_STATE(1538)] = 55456, - [SMALL_STATE(1539)] = 55484, - [SMALL_STATE(1540)] = 55512, - [SMALL_STATE(1541)] = 55540, - [SMALL_STATE(1542)] = 55568, - [SMALL_STATE(1543)] = 55594, - [SMALL_STATE(1544)] = 55622, - [SMALL_STATE(1545)] = 55646, - [SMALL_STATE(1546)] = 55674, - [SMALL_STATE(1547)] = 55698, - [SMALL_STATE(1548)] = 55726, - [SMALL_STATE(1549)] = 55754, - [SMALL_STATE(1550)] = 55782, - [SMALL_STATE(1551)] = 55810, - [SMALL_STATE(1552)] = 55838, - [SMALL_STATE(1553)] = 55862, - [SMALL_STATE(1554)] = 55884, - [SMALL_STATE(1555)] = 55909, - [SMALL_STATE(1556)] = 55930, - [SMALL_STATE(1557)] = 55955, - [SMALL_STATE(1558)] = 55976, - [SMALL_STATE(1559)] = 55997, - [SMALL_STATE(1560)] = 56018, - [SMALL_STATE(1561)] = 56041, - [SMALL_STATE(1562)] = 56064, - [SMALL_STATE(1563)] = 56089, - [SMALL_STATE(1564)] = 56108, - [SMALL_STATE(1565)] = 56129, - [SMALL_STATE(1566)] = 56152, - [SMALL_STATE(1567)] = 56175, - [SMALL_STATE(1568)] = 56198, - [SMALL_STATE(1569)] = 56219, - [SMALL_STATE(1570)] = 56242, - [SMALL_STATE(1571)] = 56263, - [SMALL_STATE(1572)] = 56288, - [SMALL_STATE(1573)] = 56309, - [SMALL_STATE(1574)] = 56328, - [SMALL_STATE(1575)] = 56349, - [SMALL_STATE(1576)] = 56366, - [SMALL_STATE(1577)] = 56387, - [SMALL_STATE(1578)] = 56412, - [SMALL_STATE(1579)] = 56437, - [SMALL_STATE(1580)] = 56458, - [SMALL_STATE(1581)] = 56481, - [SMALL_STATE(1582)] = 56504, - [SMALL_STATE(1583)] = 56525, - [SMALL_STATE(1584)] = 56546, - [SMALL_STATE(1585)] = 56571, - [SMALL_STATE(1586)] = 56596, - [SMALL_STATE(1587)] = 56619, - [SMALL_STATE(1588)] = 56642, - [SMALL_STATE(1589)] = 56661, - [SMALL_STATE(1590)] = 56682, - [SMALL_STATE(1591)] = 56705, - [SMALL_STATE(1592)] = 56728, - [SMALL_STATE(1593)] = 56747, - [SMALL_STATE(1594)] = 56772, - [SMALL_STATE(1595)] = 56797, - [SMALL_STATE(1596)] = 56816, - [SMALL_STATE(1597)] = 56839, - [SMALL_STATE(1598)] = 56860, - [SMALL_STATE(1599)] = 56881, - [SMALL_STATE(1600)] = 56902, - [SMALL_STATE(1601)] = 56921, - [SMALL_STATE(1602)] = 56944, - [SMALL_STATE(1603)] = 56967, - [SMALL_STATE(1604)] = 56986, - [SMALL_STATE(1605)] = 57011, - [SMALL_STATE(1606)] = 57036, - [SMALL_STATE(1607)] = 57061, - [SMALL_STATE(1608)] = 57082, - [SMALL_STATE(1609)] = 57105, - [SMALL_STATE(1610)] = 57126, - [SMALL_STATE(1611)] = 57149, - [SMALL_STATE(1612)] = 57174, - [SMALL_STATE(1613)] = 57195, - [SMALL_STATE(1614)] = 57214, - [SMALL_STATE(1615)] = 57239, - [SMALL_STATE(1616)] = 57260, - [SMALL_STATE(1617)] = 57285, - [SMALL_STATE(1618)] = 57306, - [SMALL_STATE(1619)] = 57331, - [SMALL_STATE(1620)] = 57356, - [SMALL_STATE(1621)] = 57377, - [SMALL_STATE(1622)] = 57398, - [SMALL_STATE(1623)] = 57421, - [SMALL_STATE(1624)] = 57442, - [SMALL_STATE(1625)] = 57461, - [SMALL_STATE(1626)] = 57482, - [SMALL_STATE(1627)] = 57503, - [SMALL_STATE(1628)] = 57524, - [SMALL_STATE(1629)] = 57545, - [SMALL_STATE(1630)] = 57565, - [SMALL_STATE(1631)] = 57583, - [SMALL_STATE(1632)] = 57603, - [SMALL_STATE(1633)] = 57623, - [SMALL_STATE(1634)] = 57643, - [SMALL_STATE(1635)] = 57665, - [SMALL_STATE(1636)] = 57683, - [SMALL_STATE(1637)] = 57703, - [SMALL_STATE(1638)] = 57725, - [SMALL_STATE(1639)] = 57747, - [SMALL_STATE(1640)] = 57769, - [SMALL_STATE(1641)] = 57791, - [SMALL_STATE(1642)] = 57813, - [SMALL_STATE(1643)] = 57833, - [SMALL_STATE(1644)] = 57855, - [SMALL_STATE(1645)] = 57877, - [SMALL_STATE(1646)] = 57893, - [SMALL_STATE(1647)] = 57915, - [SMALL_STATE(1648)] = 57933, - [SMALL_STATE(1649)] = 57955, - [SMALL_STATE(1650)] = 57977, - [SMALL_STATE(1651)] = 57995, - [SMALL_STATE(1652)] = 58015, - [SMALL_STATE(1653)] = 58033, - [SMALL_STATE(1654)] = 58055, - [SMALL_STATE(1655)] = 58077, - [SMALL_STATE(1656)] = 58099, - [SMALL_STATE(1657)] = 58121, - [SMALL_STATE(1658)] = 58143, - [SMALL_STATE(1659)] = 58163, - [SMALL_STATE(1660)] = 58183, - [SMALL_STATE(1661)] = 58205, - [SMALL_STATE(1662)] = 58227, - [SMALL_STATE(1663)] = 58247, - [SMALL_STATE(1664)] = 58263, - [SMALL_STATE(1665)] = 58279, - [SMALL_STATE(1666)] = 58299, - [SMALL_STATE(1667)] = 58319, - [SMALL_STATE(1668)] = 58339, - [SMALL_STATE(1669)] = 58357, - [SMALL_STATE(1670)] = 58377, - [SMALL_STATE(1671)] = 58399, - [SMALL_STATE(1672)] = 58419, - [SMALL_STATE(1673)] = 58441, - [SMALL_STATE(1674)] = 58461, - [SMALL_STATE(1675)] = 58479, - [SMALL_STATE(1676)] = 58499, - [SMALL_STATE(1677)] = 58521, - [SMALL_STATE(1678)] = 58537, - [SMALL_STATE(1679)] = 58553, - [SMALL_STATE(1680)] = 58575, - [SMALL_STATE(1681)] = 58597, - [SMALL_STATE(1682)] = 58619, - [SMALL_STATE(1683)] = 58641, - [SMALL_STATE(1684)] = 58657, - [SMALL_STATE(1685)] = 58673, - [SMALL_STATE(1686)] = 58691, - [SMALL_STATE(1687)] = 58709, - [SMALL_STATE(1688)] = 58731, - [SMALL_STATE(1689)] = 58751, - [SMALL_STATE(1690)] = 58767, - [SMALL_STATE(1691)] = 58787, - [SMALL_STATE(1692)] = 58807, - [SMALL_STATE(1693)] = 58827, - [SMALL_STATE(1694)] = 58847, - [SMALL_STATE(1695)] = 58869, - [SMALL_STATE(1696)] = 58889, - [SMALL_STATE(1697)] = 58909, - [SMALL_STATE(1698)] = 58929, - [SMALL_STATE(1699)] = 58949, - [SMALL_STATE(1700)] = 58967, - [SMALL_STATE(1701)] = 58987, - [SMALL_STATE(1702)] = 59009, - [SMALL_STATE(1703)] = 59027, - [SMALL_STATE(1704)] = 59047, - [SMALL_STATE(1705)] = 59063, - [SMALL_STATE(1706)] = 59085, - [SMALL_STATE(1707)] = 59107, - [SMALL_STATE(1708)] = 59129, - [SMALL_STATE(1709)] = 59147, - [SMALL_STATE(1710)] = 59169, - [SMALL_STATE(1711)] = 59191, - [SMALL_STATE(1712)] = 59211, - [SMALL_STATE(1713)] = 59227, - [SMALL_STATE(1714)] = 59247, - [SMALL_STATE(1715)] = 59267, - [SMALL_STATE(1716)] = 59287, - [SMALL_STATE(1717)] = 59303, - [SMALL_STATE(1718)] = 59323, - [SMALL_STATE(1719)] = 59343, - [SMALL_STATE(1720)] = 59365, - [SMALL_STATE(1721)] = 59383, - [SMALL_STATE(1722)] = 59405, - [SMALL_STATE(1723)] = 59427, - [SMALL_STATE(1724)] = 59447, - [SMALL_STATE(1725)] = 59469, - [SMALL_STATE(1726)] = 59489, - [SMALL_STATE(1727)] = 59511, - [SMALL_STATE(1728)] = 59533, - [SMALL_STATE(1729)] = 59551, - [SMALL_STATE(1730)] = 59573, - [SMALL_STATE(1731)] = 59595, - [SMALL_STATE(1732)] = 59611, - [SMALL_STATE(1733)] = 59633, - [SMALL_STATE(1734)] = 59655, - [SMALL_STATE(1735)] = 59677, - [SMALL_STATE(1736)] = 59699, - [SMALL_STATE(1737)] = 59721, - [SMALL_STATE(1738)] = 59741, - [SMALL_STATE(1739)] = 59763, - [SMALL_STATE(1740)] = 59785, - [SMALL_STATE(1741)] = 59807, - [SMALL_STATE(1742)] = 59827, - [SMALL_STATE(1743)] = 59849, - [SMALL_STATE(1744)] = 59871, - [SMALL_STATE(1745)] = 59887, - [SMALL_STATE(1746)] = 59903, - [SMALL_STATE(1747)] = 59925, - [SMALL_STATE(1748)] = 59947, - [SMALL_STATE(1749)] = 59969, - [SMALL_STATE(1750)] = 59991, - [SMALL_STATE(1751)] = 60013, - [SMALL_STATE(1752)] = 60035, - [SMALL_STATE(1753)] = 60057, - [SMALL_STATE(1754)] = 60077, - [SMALL_STATE(1755)] = 60093, - [SMALL_STATE(1756)] = 60115, - [SMALL_STATE(1757)] = 60135, - [SMALL_STATE(1758)] = 60151, - [SMALL_STATE(1759)] = 60173, - [SMALL_STATE(1760)] = 60195, - [SMALL_STATE(1761)] = 60217, - [SMALL_STATE(1762)] = 60233, - [SMALL_STATE(1763)] = 60255, - [SMALL_STATE(1764)] = 60275, - [SMALL_STATE(1765)] = 60291, - [SMALL_STATE(1766)] = 60313, - [SMALL_STATE(1767)] = 60333, - [SMALL_STATE(1768)] = 60353, - [SMALL_STATE(1769)] = 60375, - [SMALL_STATE(1770)] = 60395, - [SMALL_STATE(1771)] = 60415, - [SMALL_STATE(1772)] = 60435, - [SMALL_STATE(1773)] = 60457, - [SMALL_STATE(1774)] = 60479, - [SMALL_STATE(1775)] = 60501, - [SMALL_STATE(1776)] = 60517, - [SMALL_STATE(1777)] = 60533, - [SMALL_STATE(1778)] = 60555, - [SMALL_STATE(1779)] = 60575, - [SMALL_STATE(1780)] = 60597, - [SMALL_STATE(1781)] = 60619, - [SMALL_STATE(1782)] = 60636, - [SMALL_STATE(1783)] = 60653, - [SMALL_STATE(1784)] = 60670, - [SMALL_STATE(1785)] = 60687, - [SMALL_STATE(1786)] = 60706, - [SMALL_STATE(1787)] = 60725, - [SMALL_STATE(1788)] = 60744, - [SMALL_STATE(1789)] = 60761, - [SMALL_STATE(1790)] = 60780, - [SMALL_STATE(1791)] = 60799, - [SMALL_STATE(1792)] = 60818, - [SMALL_STATE(1793)] = 60837, - [SMALL_STATE(1794)] = 60856, - [SMALL_STATE(1795)] = 60871, - [SMALL_STATE(1796)] = 60886, - [SMALL_STATE(1797)] = 60905, - [SMALL_STATE(1798)] = 60920, - [SMALL_STATE(1799)] = 60937, - [SMALL_STATE(1800)] = 60956, - [SMALL_STATE(1801)] = 60971, - [SMALL_STATE(1802)] = 60990, - [SMALL_STATE(1803)] = 61009, - [SMALL_STATE(1804)] = 61028, - [SMALL_STATE(1805)] = 61045, - [SMALL_STATE(1806)] = 61064, - [SMALL_STATE(1807)] = 61081, - [SMALL_STATE(1808)] = 61100, - [SMALL_STATE(1809)] = 61119, - [SMALL_STATE(1810)] = 61136, - [SMALL_STATE(1811)] = 61153, - [SMALL_STATE(1812)] = 61172, - [SMALL_STATE(1813)] = 61187, - [SMALL_STATE(1814)] = 61206, - [SMALL_STATE(1815)] = 61225, - [SMALL_STATE(1816)] = 61244, - [SMALL_STATE(1817)] = 61259, - [SMALL_STATE(1818)] = 61278, - [SMALL_STATE(1819)] = 61297, - [SMALL_STATE(1820)] = 61316, - [SMALL_STATE(1821)] = 61335, - [SMALL_STATE(1822)] = 61354, - [SMALL_STATE(1823)] = 61373, - [SMALL_STATE(1824)] = 61392, - [SMALL_STATE(1825)] = 61411, - [SMALL_STATE(1826)] = 61430, - [SMALL_STATE(1827)] = 61449, - [SMALL_STATE(1828)] = 61468, - [SMALL_STATE(1829)] = 61487, - [SMALL_STATE(1830)] = 61506, - [SMALL_STATE(1831)] = 61523, - [SMALL_STATE(1832)] = 61542, - [SMALL_STATE(1833)] = 61559, - [SMALL_STATE(1834)] = 61576, - [SMALL_STATE(1835)] = 61591, - [SMALL_STATE(1836)] = 61606, - [SMALL_STATE(1837)] = 61623, - [SMALL_STATE(1838)] = 61642, - [SMALL_STATE(1839)] = 61657, - [SMALL_STATE(1840)] = 61672, - [SMALL_STATE(1841)] = 61691, - [SMALL_STATE(1842)] = 61710, - [SMALL_STATE(1843)] = 61729, - [SMALL_STATE(1844)] = 61746, - [SMALL_STATE(1845)] = 61765, - [SMALL_STATE(1846)] = 61782, - [SMALL_STATE(1847)] = 61799, - [SMALL_STATE(1848)] = 61818, - [SMALL_STATE(1849)] = 61837, - [SMALL_STATE(1850)] = 61854, - [SMALL_STATE(1851)] = 61873, - [SMALL_STATE(1852)] = 61890, - [SMALL_STATE(1853)] = 61907, - [SMALL_STATE(1854)] = 61922, - [SMALL_STATE(1855)] = 61939, - [SMALL_STATE(1856)] = 61958, - [SMALL_STATE(1857)] = 61975, - [SMALL_STATE(1858)] = 61994, - [SMALL_STATE(1859)] = 62011, - [SMALL_STATE(1860)] = 62030, - [SMALL_STATE(1861)] = 62049, - [SMALL_STATE(1862)] = 62066, - [SMALL_STATE(1863)] = 62083, - [SMALL_STATE(1864)] = 62102, - [SMALL_STATE(1865)] = 62121, - [SMALL_STATE(1866)] = 62138, - [SMALL_STATE(1867)] = 62157, - [SMALL_STATE(1868)] = 62176, - [SMALL_STATE(1869)] = 62195, - [SMALL_STATE(1870)] = 62214, - [SMALL_STATE(1871)] = 62233, - [SMALL_STATE(1872)] = 62252, - [SMALL_STATE(1873)] = 62269, - [SMALL_STATE(1874)] = 62288, - [SMALL_STATE(1875)] = 62307, - [SMALL_STATE(1876)] = 62324, - [SMALL_STATE(1877)] = 62343, - [SMALL_STATE(1878)] = 62362, - [SMALL_STATE(1879)] = 62379, - [SMALL_STATE(1880)] = 62398, - [SMALL_STATE(1881)] = 62415, - [SMALL_STATE(1882)] = 62432, - [SMALL_STATE(1883)] = 62451, - [SMALL_STATE(1884)] = 62470, - [SMALL_STATE(1885)] = 62487, - [SMALL_STATE(1886)] = 62504, - [SMALL_STATE(1887)] = 62523, - [SMALL_STATE(1888)] = 62542, - [SMALL_STATE(1889)] = 62561, - [SMALL_STATE(1890)] = 62580, - [SMALL_STATE(1891)] = 62595, - [SMALL_STATE(1892)] = 62610, - [SMALL_STATE(1893)] = 62627, - [SMALL_STATE(1894)] = 62646, - [SMALL_STATE(1895)] = 62663, - [SMALL_STATE(1896)] = 62682, - [SMALL_STATE(1897)] = 62701, - [SMALL_STATE(1898)] = 62718, - [SMALL_STATE(1899)] = 62737, - [SMALL_STATE(1900)] = 62754, - [SMALL_STATE(1901)] = 62771, - [SMALL_STATE(1902)] = 62788, - [SMALL_STATE(1903)] = 62807, - [SMALL_STATE(1904)] = 62826, - [SMALL_STATE(1905)] = 62845, - [SMALL_STATE(1906)] = 62860, - [SMALL_STATE(1907)] = 62877, - [SMALL_STATE(1908)] = 62894, - [SMALL_STATE(1909)] = 62911, - [SMALL_STATE(1910)] = 62928, - [SMALL_STATE(1911)] = 62947, - [SMALL_STATE(1912)] = 62964, - [SMALL_STATE(1913)] = 62983, - [SMALL_STATE(1914)] = 62998, - [SMALL_STATE(1915)] = 63017, - [SMALL_STATE(1916)] = 63032, - [SMALL_STATE(1917)] = 63049, - [SMALL_STATE(1918)] = 63066, - [SMALL_STATE(1919)] = 63085, - [SMALL_STATE(1920)] = 63102, - [SMALL_STATE(1921)] = 63119, - [SMALL_STATE(1922)] = 63136, - [SMALL_STATE(1923)] = 63153, - [SMALL_STATE(1924)] = 63170, - [SMALL_STATE(1925)] = 63189, - [SMALL_STATE(1926)] = 63206, - [SMALL_STATE(1927)] = 63225, - [SMALL_STATE(1928)] = 63244, - [SMALL_STATE(1929)] = 63261, - [SMALL_STATE(1930)] = 63276, - [SMALL_STATE(1931)] = 63293, - [SMALL_STATE(1932)] = 63310, - [SMALL_STATE(1933)] = 63327, - [SMALL_STATE(1934)] = 63344, - [SMALL_STATE(1935)] = 63359, - [SMALL_STATE(1936)] = 63376, - [SMALL_STATE(1937)] = 63393, - [SMALL_STATE(1938)] = 63408, - [SMALL_STATE(1939)] = 63425, - [SMALL_STATE(1940)] = 63442, - [SMALL_STATE(1941)] = 63461, - [SMALL_STATE(1942)] = 63480, - [SMALL_STATE(1943)] = 63495, - [SMALL_STATE(1944)] = 63510, - [SMALL_STATE(1945)] = 63527, - [SMALL_STATE(1946)] = 63546, - [SMALL_STATE(1947)] = 63563, - [SMALL_STATE(1948)] = 63578, - [SMALL_STATE(1949)] = 63597, - [SMALL_STATE(1950)] = 63614, - [SMALL_STATE(1951)] = 63633, - [SMALL_STATE(1952)] = 63648, - [SMALL_STATE(1953)] = 63665, - [SMALL_STATE(1954)] = 63684, - [SMALL_STATE(1955)] = 63701, - [SMALL_STATE(1956)] = 63720, - [SMALL_STATE(1957)] = 63737, - [SMALL_STATE(1958)] = 63754, - [SMALL_STATE(1959)] = 63773, - [SMALL_STATE(1960)] = 63792, - [SMALL_STATE(1961)] = 63811, - [SMALL_STATE(1962)] = 63830, - [SMALL_STATE(1963)] = 63849, - [SMALL_STATE(1964)] = 63868, - [SMALL_STATE(1965)] = 63887, - [SMALL_STATE(1966)] = 63906, - [SMALL_STATE(1967)] = 63925, - [SMALL_STATE(1968)] = 63944, - [SMALL_STATE(1969)] = 63963, - [SMALL_STATE(1970)] = 63980, - [SMALL_STATE(1971)] = 63997, - [SMALL_STATE(1972)] = 64012, - [SMALL_STATE(1973)] = 64027, - [SMALL_STATE(1974)] = 64044, - [SMALL_STATE(1975)] = 64061, - [SMALL_STATE(1976)] = 64078, - [SMALL_STATE(1977)] = 64095, - [SMALL_STATE(1978)] = 64112, - [SMALL_STATE(1979)] = 64129, - [SMALL_STATE(1980)] = 64146, - [SMALL_STATE(1981)] = 64165, - [SMALL_STATE(1982)] = 64184, - [SMALL_STATE(1983)] = 64201, - [SMALL_STATE(1984)] = 64220, - [SMALL_STATE(1985)] = 64237, - [SMALL_STATE(1986)] = 64254, - [SMALL_STATE(1987)] = 64271, - [SMALL_STATE(1988)] = 64288, - [SMALL_STATE(1989)] = 64305, - [SMALL_STATE(1990)] = 64322, - [SMALL_STATE(1991)] = 64341, - [SMALL_STATE(1992)] = 64358, - [SMALL_STATE(1993)] = 64375, - [SMALL_STATE(1994)] = 64394, - [SMALL_STATE(1995)] = 64413, - [SMALL_STATE(1996)] = 64430, - [SMALL_STATE(1997)] = 64449, - [SMALL_STATE(1998)] = 64466, - [SMALL_STATE(1999)] = 64483, - [SMALL_STATE(2000)] = 64500, - [SMALL_STATE(2001)] = 64517, - [SMALL_STATE(2002)] = 64536, - [SMALL_STATE(2003)] = 64553, - [SMALL_STATE(2004)] = 64570, - [SMALL_STATE(2005)] = 64587, - [SMALL_STATE(2006)] = 64604, - [SMALL_STATE(2007)] = 64621, - [SMALL_STATE(2008)] = 64638, - [SMALL_STATE(2009)] = 64655, - [SMALL_STATE(2010)] = 64672, - [SMALL_STATE(2011)] = 64689, - [SMALL_STATE(2012)] = 64706, - [SMALL_STATE(2013)] = 64723, - [SMALL_STATE(2014)] = 64740, - [SMALL_STATE(2015)] = 64757, - [SMALL_STATE(2016)] = 64774, - [SMALL_STATE(2017)] = 64791, - [SMALL_STATE(2018)] = 64810, - [SMALL_STATE(2019)] = 64827, - [SMALL_STATE(2020)] = 64844, - [SMALL_STATE(2021)] = 64861, - [SMALL_STATE(2022)] = 64878, - [SMALL_STATE(2023)] = 64895, - [SMALL_STATE(2024)] = 64912, - [SMALL_STATE(2025)] = 64929, - [SMALL_STATE(2026)] = 64946, - [SMALL_STATE(2027)] = 64963, - [SMALL_STATE(2028)] = 64980, - [SMALL_STATE(2029)] = 64999, - [SMALL_STATE(2030)] = 65016, - [SMALL_STATE(2031)] = 65033, - [SMALL_STATE(2032)] = 65050, - [SMALL_STATE(2033)] = 65067, - [SMALL_STATE(2034)] = 65084, - [SMALL_STATE(2035)] = 65101, - [SMALL_STATE(2036)] = 65118, - [SMALL_STATE(2037)] = 65135, - [SMALL_STATE(2038)] = 65152, - [SMALL_STATE(2039)] = 65169, - [SMALL_STATE(2040)] = 65183, - [SMALL_STATE(2041)] = 65197, - [SMALL_STATE(2042)] = 65211, - [SMALL_STATE(2043)] = 65227, - [SMALL_STATE(2044)] = 65241, - [SMALL_STATE(2045)] = 65257, - [SMALL_STATE(2046)] = 65271, - [SMALL_STATE(2047)] = 65287, - [SMALL_STATE(2048)] = 65301, - [SMALL_STATE(2049)] = 65317, - [SMALL_STATE(2050)] = 65333, - [SMALL_STATE(2051)] = 65349, - [SMALL_STATE(2052)] = 65365, - [SMALL_STATE(2053)] = 65381, - [SMALL_STATE(2054)] = 65397, - [SMALL_STATE(2055)] = 65413, - [SMALL_STATE(2056)] = 65429, - [SMALL_STATE(2057)] = 65445, - [SMALL_STATE(2058)] = 65461, - [SMALL_STATE(2059)] = 65477, - [SMALL_STATE(2060)] = 65493, - [SMALL_STATE(2061)] = 65509, - [SMALL_STATE(2062)] = 65525, - [SMALL_STATE(2063)] = 65541, - [SMALL_STATE(2064)] = 65557, - [SMALL_STATE(2065)] = 65573, - [SMALL_STATE(2066)] = 65589, - [SMALL_STATE(2067)] = 65605, - [SMALL_STATE(2068)] = 65621, - [SMALL_STATE(2069)] = 65635, - [SMALL_STATE(2070)] = 65651, - [SMALL_STATE(2071)] = 65665, - [SMALL_STATE(2072)] = 65679, - [SMALL_STATE(2073)] = 65693, - [SMALL_STATE(2074)] = 65709, - [SMALL_STATE(2075)] = 65725, - [SMALL_STATE(2076)] = 65739, - [SMALL_STATE(2077)] = 65753, - [SMALL_STATE(2078)] = 65769, - [SMALL_STATE(2079)] = 65785, - [SMALL_STATE(2080)] = 65801, - [SMALL_STATE(2081)] = 65815, - [SMALL_STATE(2082)] = 65831, - [SMALL_STATE(2083)] = 65845, - [SMALL_STATE(2084)] = 65861, - [SMALL_STATE(2085)] = 65877, - [SMALL_STATE(2086)] = 65893, - [SMALL_STATE(2087)] = 65909, - [SMALL_STATE(2088)] = 65923, - [SMALL_STATE(2089)] = 65939, - [SMALL_STATE(2090)] = 65955, - [SMALL_STATE(2091)] = 65971, - [SMALL_STATE(2092)] = 65987, - [SMALL_STATE(2093)] = 66001, - [SMALL_STATE(2094)] = 66015, - [SMALL_STATE(2095)] = 66029, - [SMALL_STATE(2096)] = 66043, - [SMALL_STATE(2097)] = 66059, - [SMALL_STATE(2098)] = 66073, - [SMALL_STATE(2099)] = 66089, - [SMALL_STATE(2100)] = 66105, - [SMALL_STATE(2101)] = 66121, - [SMALL_STATE(2102)] = 66137, - [SMALL_STATE(2103)] = 66153, - [SMALL_STATE(2104)] = 66169, - [SMALL_STATE(2105)] = 66185, - [SMALL_STATE(2106)] = 66201, - [SMALL_STATE(2107)] = 66215, - [SMALL_STATE(2108)] = 66231, - [SMALL_STATE(2109)] = 66245, - [SMALL_STATE(2110)] = 66259, - [SMALL_STATE(2111)] = 66273, - [SMALL_STATE(2112)] = 66287, - [SMALL_STATE(2113)] = 66303, - [SMALL_STATE(2114)] = 66319, - [SMALL_STATE(2115)] = 66335, - [SMALL_STATE(2116)] = 66351, - [SMALL_STATE(2117)] = 66365, - [SMALL_STATE(2118)] = 66381, - [SMALL_STATE(2119)] = 66397, - [SMALL_STATE(2120)] = 66413, - [SMALL_STATE(2121)] = 66429, - [SMALL_STATE(2122)] = 66445, - [SMALL_STATE(2123)] = 66461, - [SMALL_STATE(2124)] = 66475, - [SMALL_STATE(2125)] = 66491, - [SMALL_STATE(2126)] = 66507, - [SMALL_STATE(2127)] = 66521, - [SMALL_STATE(2128)] = 66537, - [SMALL_STATE(2129)] = 66551, - [SMALL_STATE(2130)] = 66567, - [SMALL_STATE(2131)] = 66583, - [SMALL_STATE(2132)] = 66597, - [SMALL_STATE(2133)] = 66613, - [SMALL_STATE(2134)] = 66629, - [SMALL_STATE(2135)] = 66645, - [SMALL_STATE(2136)] = 66661, - [SMALL_STATE(2137)] = 66677, - [SMALL_STATE(2138)] = 66693, - [SMALL_STATE(2139)] = 66709, - [SMALL_STATE(2140)] = 66725, - [SMALL_STATE(2141)] = 66739, - [SMALL_STATE(2142)] = 66753, - [SMALL_STATE(2143)] = 66767, - [SMALL_STATE(2144)] = 66783, - [SMALL_STATE(2145)] = 66799, - [SMALL_STATE(2146)] = 66815, - [SMALL_STATE(2147)] = 66829, - [SMALL_STATE(2148)] = 66845, - [SMALL_STATE(2149)] = 66861, - [SMALL_STATE(2150)] = 66877, - [SMALL_STATE(2151)] = 66893, - [SMALL_STATE(2152)] = 66909, - [SMALL_STATE(2153)] = 66925, - [SMALL_STATE(2154)] = 66941, - [SMALL_STATE(2155)] = 66957, - [SMALL_STATE(2156)] = 66971, - [SMALL_STATE(2157)] = 66987, - [SMALL_STATE(2158)] = 67001, - [SMALL_STATE(2159)] = 67015, - [SMALL_STATE(2160)] = 67031, - [SMALL_STATE(2161)] = 67047, - [SMALL_STATE(2162)] = 67063, - [SMALL_STATE(2163)] = 67079, - [SMALL_STATE(2164)] = 67095, - [SMALL_STATE(2165)] = 67111, - [SMALL_STATE(2166)] = 67127, - [SMALL_STATE(2167)] = 67143, - [SMALL_STATE(2168)] = 67159, - [SMALL_STATE(2169)] = 67173, - [SMALL_STATE(2170)] = 67187, - [SMALL_STATE(2171)] = 67201, - [SMALL_STATE(2172)] = 67215, - [SMALL_STATE(2173)] = 67229, - [SMALL_STATE(2174)] = 67245, - [SMALL_STATE(2175)] = 67261, - [SMALL_STATE(2176)] = 67277, - [SMALL_STATE(2177)] = 67293, - [SMALL_STATE(2178)] = 67307, - [SMALL_STATE(2179)] = 67321, - [SMALL_STATE(2180)] = 67335, - [SMALL_STATE(2181)] = 67351, - [SMALL_STATE(2182)] = 67365, - [SMALL_STATE(2183)] = 67381, - [SMALL_STATE(2184)] = 67397, - [SMALL_STATE(2185)] = 67413, - [SMALL_STATE(2186)] = 67427, - [SMALL_STATE(2187)] = 67443, - [SMALL_STATE(2188)] = 67459, - [SMALL_STATE(2189)] = 67475, - [SMALL_STATE(2190)] = 67491, - [SMALL_STATE(2191)] = 67505, - [SMALL_STATE(2192)] = 67519, - [SMALL_STATE(2193)] = 67535, - [SMALL_STATE(2194)] = 67549, - [SMALL_STATE(2195)] = 67563, - [SMALL_STATE(2196)] = 67579, - [SMALL_STATE(2197)] = 67595, - [SMALL_STATE(2198)] = 67611, - [SMALL_STATE(2199)] = 67627, - [SMALL_STATE(2200)] = 67641, - [SMALL_STATE(2201)] = 67655, - [SMALL_STATE(2202)] = 67671, - [SMALL_STATE(2203)] = 67687, - [SMALL_STATE(2204)] = 67703, - [SMALL_STATE(2205)] = 67719, - [SMALL_STATE(2206)] = 67733, - [SMALL_STATE(2207)] = 67749, - [SMALL_STATE(2208)] = 67763, - [SMALL_STATE(2209)] = 67779, - [SMALL_STATE(2210)] = 67795, - [SMALL_STATE(2211)] = 67811, - [SMALL_STATE(2212)] = 67827, - [SMALL_STATE(2213)] = 67843, - [SMALL_STATE(2214)] = 67859, - [SMALL_STATE(2215)] = 67875, - [SMALL_STATE(2216)] = 67891, - [SMALL_STATE(2217)] = 67907, - [SMALL_STATE(2218)] = 67921, - [SMALL_STATE(2219)] = 67935, - [SMALL_STATE(2220)] = 67949, - [SMALL_STATE(2221)] = 67963, - [SMALL_STATE(2222)] = 67977, - [SMALL_STATE(2223)] = 67991, - [SMALL_STATE(2224)] = 68005, - [SMALL_STATE(2225)] = 68019, - [SMALL_STATE(2226)] = 68033, - [SMALL_STATE(2227)] = 68049, - [SMALL_STATE(2228)] = 68063, - [SMALL_STATE(2229)] = 68077, - [SMALL_STATE(2230)] = 68093, - [SMALL_STATE(2231)] = 68109, - [SMALL_STATE(2232)] = 68123, - [SMALL_STATE(2233)] = 68137, - [SMALL_STATE(2234)] = 68151, - [SMALL_STATE(2235)] = 68167, - [SMALL_STATE(2236)] = 68183, - [SMALL_STATE(2237)] = 68197, - [SMALL_STATE(2238)] = 68211, - [SMALL_STATE(2239)] = 68225, - [SMALL_STATE(2240)] = 68239, - [SMALL_STATE(2241)] = 68255, - [SMALL_STATE(2242)] = 68269, - [SMALL_STATE(2243)] = 68285, - [SMALL_STATE(2244)] = 68301, - [SMALL_STATE(2245)] = 68317, - [SMALL_STATE(2246)] = 68333, - [SMALL_STATE(2247)] = 68349, - [SMALL_STATE(2248)] = 68365, - [SMALL_STATE(2249)] = 68381, - [SMALL_STATE(2250)] = 68397, - [SMALL_STATE(2251)] = 68413, - [SMALL_STATE(2252)] = 68427, - [SMALL_STATE(2253)] = 68443, - [SMALL_STATE(2254)] = 68459, - [SMALL_STATE(2255)] = 68475, - [SMALL_STATE(2256)] = 68491, - [SMALL_STATE(2257)] = 68505, - [SMALL_STATE(2258)] = 68521, - [SMALL_STATE(2259)] = 68537, - [SMALL_STATE(2260)] = 68553, - [SMALL_STATE(2261)] = 68569, - [SMALL_STATE(2262)] = 68583, - [SMALL_STATE(2263)] = 68599, - [SMALL_STATE(2264)] = 68615, - [SMALL_STATE(2265)] = 68631, - [SMALL_STATE(2266)] = 68647, - [SMALL_STATE(2267)] = 68661, - [SMALL_STATE(2268)] = 68677, - [SMALL_STATE(2269)] = 68691, - [SMALL_STATE(2270)] = 68707, - [SMALL_STATE(2271)] = 68721, - [SMALL_STATE(2272)] = 68735, - [SMALL_STATE(2273)] = 68749, - [SMALL_STATE(2274)] = 68765, - [SMALL_STATE(2275)] = 68781, - [SMALL_STATE(2276)] = 68797, - [SMALL_STATE(2277)] = 68813, - [SMALL_STATE(2278)] = 68827, - [SMALL_STATE(2279)] = 68841, - [SMALL_STATE(2280)] = 68857, - [SMALL_STATE(2281)] = 68871, - [SMALL_STATE(2282)] = 68885, - [SMALL_STATE(2283)] = 68899, - [SMALL_STATE(2284)] = 68915, - [SMALL_STATE(2285)] = 68929, - [SMALL_STATE(2286)] = 68945, - [SMALL_STATE(2287)] = 68961, - [SMALL_STATE(2288)] = 68977, - [SMALL_STATE(2289)] = 68993, - [SMALL_STATE(2290)] = 69007, - [SMALL_STATE(2291)] = 69023, - [SMALL_STATE(2292)] = 69037, - [SMALL_STATE(2293)] = 69053, - [SMALL_STATE(2294)] = 69069, - [SMALL_STATE(2295)] = 69083, - [SMALL_STATE(2296)] = 69097, - [SMALL_STATE(2297)] = 69113, - [SMALL_STATE(2298)] = 69127, - [SMALL_STATE(2299)] = 69143, - [SMALL_STATE(2300)] = 69159, - [SMALL_STATE(2301)] = 69175, - [SMALL_STATE(2302)] = 69188, - [SMALL_STATE(2303)] = 69201, - [SMALL_STATE(2304)] = 69214, - [SMALL_STATE(2305)] = 69227, - [SMALL_STATE(2306)] = 69240, - [SMALL_STATE(2307)] = 69253, - [SMALL_STATE(2308)] = 69266, - [SMALL_STATE(2309)] = 69279, - [SMALL_STATE(2310)] = 69292, - [SMALL_STATE(2311)] = 69305, - [SMALL_STATE(2312)] = 69318, - [SMALL_STATE(2313)] = 69331, - [SMALL_STATE(2314)] = 69344, - [SMALL_STATE(2315)] = 69357, - [SMALL_STATE(2316)] = 69370, - [SMALL_STATE(2317)] = 69383, - [SMALL_STATE(2318)] = 69396, - [SMALL_STATE(2319)] = 69409, - [SMALL_STATE(2320)] = 69422, - [SMALL_STATE(2321)] = 69435, - [SMALL_STATE(2322)] = 69448, - [SMALL_STATE(2323)] = 69461, - [SMALL_STATE(2324)] = 69474, - [SMALL_STATE(2325)] = 69487, - [SMALL_STATE(2326)] = 69500, - [SMALL_STATE(2327)] = 69513, - [SMALL_STATE(2328)] = 69526, - [SMALL_STATE(2329)] = 69539, - [SMALL_STATE(2330)] = 69552, - [SMALL_STATE(2331)] = 69565, - [SMALL_STATE(2332)] = 69578, - [SMALL_STATE(2333)] = 69591, - [SMALL_STATE(2334)] = 69604, - [SMALL_STATE(2335)] = 69617, - [SMALL_STATE(2336)] = 69630, - [SMALL_STATE(2337)] = 69643, - [SMALL_STATE(2338)] = 69656, - [SMALL_STATE(2339)] = 69669, - [SMALL_STATE(2340)] = 69682, - [SMALL_STATE(2341)] = 69695, - [SMALL_STATE(2342)] = 69708, - [SMALL_STATE(2343)] = 69721, - [SMALL_STATE(2344)] = 69734, - [SMALL_STATE(2345)] = 69747, - [SMALL_STATE(2346)] = 69760, - [SMALL_STATE(2347)] = 69773, - [SMALL_STATE(2348)] = 69786, - [SMALL_STATE(2349)] = 69799, - [SMALL_STATE(2350)] = 69812, - [SMALL_STATE(2351)] = 69825, - [SMALL_STATE(2352)] = 69838, - [SMALL_STATE(2353)] = 69851, - [SMALL_STATE(2354)] = 69864, - [SMALL_STATE(2355)] = 69877, - [SMALL_STATE(2356)] = 69890, - [SMALL_STATE(2357)] = 69903, - [SMALL_STATE(2358)] = 69916, - [SMALL_STATE(2359)] = 69929, - [SMALL_STATE(2360)] = 69942, - [SMALL_STATE(2361)] = 69955, - [SMALL_STATE(2362)] = 69968, - [SMALL_STATE(2363)] = 69981, - [SMALL_STATE(2364)] = 69994, - [SMALL_STATE(2365)] = 70007, - [SMALL_STATE(2366)] = 70020, - [SMALL_STATE(2367)] = 70033, - [SMALL_STATE(2368)] = 70046, - [SMALL_STATE(2369)] = 70059, - [SMALL_STATE(2370)] = 70072, - [SMALL_STATE(2371)] = 70085, - [SMALL_STATE(2372)] = 70098, - [SMALL_STATE(2373)] = 70111, - [SMALL_STATE(2374)] = 70124, - [SMALL_STATE(2375)] = 70137, - [SMALL_STATE(2376)] = 70150, - [SMALL_STATE(2377)] = 70163, - [SMALL_STATE(2378)] = 70176, - [SMALL_STATE(2379)] = 70189, - [SMALL_STATE(2380)] = 70202, - [SMALL_STATE(2381)] = 70215, - [SMALL_STATE(2382)] = 70228, - [SMALL_STATE(2383)] = 70241, - [SMALL_STATE(2384)] = 70254, - [SMALL_STATE(2385)] = 70267, - [SMALL_STATE(2386)] = 70280, - [SMALL_STATE(2387)] = 70293, - [SMALL_STATE(2388)] = 70306, - [SMALL_STATE(2389)] = 70319, - [SMALL_STATE(2390)] = 70332, - [SMALL_STATE(2391)] = 70345, - [SMALL_STATE(2392)] = 70358, - [SMALL_STATE(2393)] = 70371, - [SMALL_STATE(2394)] = 70384, - [SMALL_STATE(2395)] = 70397, - [SMALL_STATE(2396)] = 70410, - [SMALL_STATE(2397)] = 70423, - [SMALL_STATE(2398)] = 70436, - [SMALL_STATE(2399)] = 70449, - [SMALL_STATE(2400)] = 70462, - [SMALL_STATE(2401)] = 70475, - [SMALL_STATE(2402)] = 70488, - [SMALL_STATE(2403)] = 70501, - [SMALL_STATE(2404)] = 70514, - [SMALL_STATE(2405)] = 70527, - [SMALL_STATE(2406)] = 70540, - [SMALL_STATE(2407)] = 70553, - [SMALL_STATE(2408)] = 70566, - [SMALL_STATE(2409)] = 70579, - [SMALL_STATE(2410)] = 70592, - [SMALL_STATE(2411)] = 70605, - [SMALL_STATE(2412)] = 70618, - [SMALL_STATE(2413)] = 70631, - [SMALL_STATE(2414)] = 70644, - [SMALL_STATE(2415)] = 70657, - [SMALL_STATE(2416)] = 70670, - [SMALL_STATE(2417)] = 70683, - [SMALL_STATE(2418)] = 70696, - [SMALL_STATE(2419)] = 70709, - [SMALL_STATE(2420)] = 70722, - [SMALL_STATE(2421)] = 70735, - [SMALL_STATE(2422)] = 70748, - [SMALL_STATE(2423)] = 70761, - [SMALL_STATE(2424)] = 70774, - [SMALL_STATE(2425)] = 70787, - [SMALL_STATE(2426)] = 70800, - [SMALL_STATE(2427)] = 70813, - [SMALL_STATE(2428)] = 70826, - [SMALL_STATE(2429)] = 70839, - [SMALL_STATE(2430)] = 70852, - [SMALL_STATE(2431)] = 70865, - [SMALL_STATE(2432)] = 70878, - [SMALL_STATE(2433)] = 70891, - [SMALL_STATE(2434)] = 70904, - [SMALL_STATE(2435)] = 70917, - [SMALL_STATE(2436)] = 70930, - [SMALL_STATE(2437)] = 70943, - [SMALL_STATE(2438)] = 70956, - [SMALL_STATE(2439)] = 70969, - [SMALL_STATE(2440)] = 70982, - [SMALL_STATE(2441)] = 70995, - [SMALL_STATE(2442)] = 71008, - [SMALL_STATE(2443)] = 71021, - [SMALL_STATE(2444)] = 71034, - [SMALL_STATE(2445)] = 71047, - [SMALL_STATE(2446)] = 71060, - [SMALL_STATE(2447)] = 71073, - [SMALL_STATE(2448)] = 71086, - [SMALL_STATE(2449)] = 71099, - [SMALL_STATE(2450)] = 71112, - [SMALL_STATE(2451)] = 71125, - [SMALL_STATE(2452)] = 71138, - [SMALL_STATE(2453)] = 71151, - [SMALL_STATE(2454)] = 71164, - [SMALL_STATE(2455)] = 71177, - [SMALL_STATE(2456)] = 71190, - [SMALL_STATE(2457)] = 71203, - [SMALL_STATE(2458)] = 71216, - [SMALL_STATE(2459)] = 71229, - [SMALL_STATE(2460)] = 71242, - [SMALL_STATE(2461)] = 71255, - [SMALL_STATE(2462)] = 71268, - [SMALL_STATE(2463)] = 71281, - [SMALL_STATE(2464)] = 71294, - [SMALL_STATE(2465)] = 71307, - [SMALL_STATE(2466)] = 71320, - [SMALL_STATE(2467)] = 71333, - [SMALL_STATE(2468)] = 71346, - [SMALL_STATE(2469)] = 71359, - [SMALL_STATE(2470)] = 71372, - [SMALL_STATE(2471)] = 71385, - [SMALL_STATE(2472)] = 71398, - [SMALL_STATE(2473)] = 71411, - [SMALL_STATE(2474)] = 71424, - [SMALL_STATE(2475)] = 71437, - [SMALL_STATE(2476)] = 71450, - [SMALL_STATE(2477)] = 71463, - [SMALL_STATE(2478)] = 71476, - [SMALL_STATE(2479)] = 71489, - [SMALL_STATE(2480)] = 71502, - [SMALL_STATE(2481)] = 71515, - [SMALL_STATE(2482)] = 71528, - [SMALL_STATE(2483)] = 71541, - [SMALL_STATE(2484)] = 71554, - [SMALL_STATE(2485)] = 71567, - [SMALL_STATE(2486)] = 71580, - [SMALL_STATE(2487)] = 71593, - [SMALL_STATE(2488)] = 71606, - [SMALL_STATE(2489)] = 71619, - [SMALL_STATE(2490)] = 71632, - [SMALL_STATE(2491)] = 71645, - [SMALL_STATE(2492)] = 71658, - [SMALL_STATE(2493)] = 71671, - [SMALL_STATE(2494)] = 71684, - [SMALL_STATE(2495)] = 71697, - [SMALL_STATE(2496)] = 71710, - [SMALL_STATE(2497)] = 71723, - [SMALL_STATE(2498)] = 71736, - [SMALL_STATE(2499)] = 71749, - [SMALL_STATE(2500)] = 71762, - [SMALL_STATE(2501)] = 71775, - [SMALL_STATE(2502)] = 71788, - [SMALL_STATE(2503)] = 71801, - [SMALL_STATE(2504)] = 71814, - [SMALL_STATE(2505)] = 71827, - [SMALL_STATE(2506)] = 71840, - [SMALL_STATE(2507)] = 71853, - [SMALL_STATE(2508)] = 71866, - [SMALL_STATE(2509)] = 71879, - [SMALL_STATE(2510)] = 71892, - [SMALL_STATE(2511)] = 71905, - [SMALL_STATE(2512)] = 71918, - [SMALL_STATE(2513)] = 71931, - [SMALL_STATE(2514)] = 71944, - [SMALL_STATE(2515)] = 71957, - [SMALL_STATE(2516)] = 71970, - [SMALL_STATE(2517)] = 71983, - [SMALL_STATE(2518)] = 71996, - [SMALL_STATE(2519)] = 72009, - [SMALL_STATE(2520)] = 72022, - [SMALL_STATE(2521)] = 72035, - [SMALL_STATE(2522)] = 72048, - [SMALL_STATE(2523)] = 72061, - [SMALL_STATE(2524)] = 72074, - [SMALL_STATE(2525)] = 72078, -}; - -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(1510), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [15] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [17] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(757), - [20] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(491), - [23] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1379), - [26] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1784), - [29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1578), - [32] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1338), - [35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1416), - [38] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1552), - [41] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2066), - [44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(27), - [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2478), - [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2477), - [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2472), - [56] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2471), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1281), - [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1284), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1309), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1682), - [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(96), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2449), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(190), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2448), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2444), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1105), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2120), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2433), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(181), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(185), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(188), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(278), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2122), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(85), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2428), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2426), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2132), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2138), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2139), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(299), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(300), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(300), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(590), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(317), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(745), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(840), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1105), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2407), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(101), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(712), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1376), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1319), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2404), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1610), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(88), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(332), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(410), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(347), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(352), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(831), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 101), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 101), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), - [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 101), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 101), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2511), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2136), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2519), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2523), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2053), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(821), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(726), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2399), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2147), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 13), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 13), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 37), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 37), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 37), SHIFT(2124), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 37), SHIFT(84), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 13), SHIFT(2124), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 13), SHIFT(84), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 127), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 127), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 141), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 141), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 71), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 71), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 71), SHIFT_REPEAT(2124), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 9), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 9), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 33), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 33), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 79), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 79), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 42), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 42), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 105), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 105), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 117), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 117), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 136), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 136), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 115), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 115), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 72), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 72), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 67), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 67), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 48), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 48), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 9), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 9), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 115), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 115), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 19), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 19), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 97), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 97), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 67), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 67), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 13), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 13), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 13), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 13), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 36), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 36), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 37), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 37), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 8), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 8), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 128), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 128), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 13), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 13), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 70), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 70), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 72), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 72), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 42), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 42), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 69), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 69), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 13), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 13), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 79), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 79), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 136), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 136), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 115), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 115), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 13), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 13), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 79), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 79), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 9), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 9), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 9), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 9), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 80), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 80), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 33), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 33), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 48), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 48), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 33), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 33), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 36), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 36), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 35), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 35), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 117), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 117), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 33), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 33), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 48), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 48), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 134), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 134), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 105), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 105), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 9), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 9), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 7), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 7), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 70), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 70), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 128), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 128), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 34), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 34), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 74), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 74), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 74), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 74), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 18), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 18), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 18), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 18), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 17), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 17), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 6), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 6), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 45), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 45), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 107), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 107), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 108), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 108), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 108), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 108), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 46), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 46), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 46), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 46), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2405), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 16), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 16), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 12), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 12), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 12), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 12), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 12), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 12), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 12), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 12), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1371), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(712), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1844), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2066), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(93), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2498), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(115), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1322), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2507), - [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1569), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(716), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 11), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 11), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 83), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 83), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 38), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 38), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 47), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 47), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 75), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 75), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 49), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 49), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 81), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 81), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 13), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 13), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 82), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 82), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 15), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 15), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 50), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 50), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 118), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 118), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 51), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 51), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 92), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 92), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 61), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 61), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 38), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 38), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 38), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 38), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 34), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 34), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 109), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 109), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 38), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 38), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 110), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 110), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 111), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 111), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 20), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 20), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 28), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 28), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 112), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 112), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 142), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 142), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 113), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 113), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 30), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 30), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 31), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 31), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 133), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 133), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 132), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 132), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 131), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 131), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 130), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 130), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 7, .production_id = 129), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 111), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 116), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 113), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 7, .production_id = 135), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 31), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 7, .production_id = 131), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 7, .production_id = 137), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 8, .production_id = 143), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 16), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 15), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 106), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 82), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 68), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 62), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 98), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 43), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 43), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 44), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 78), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 73), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 73), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 51), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 21), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1294), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1281), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1284), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1293), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1288), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 85), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 119), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 120), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 121), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 123), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 100), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 99), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 138), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 84), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 91), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 59), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 1), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 41), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, .production_id = 104), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 87), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1294), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1388), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1485), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1546), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1281), - [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1284), - [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1293), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1288), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1376), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1433), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1388), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1485), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), - [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2510), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1449), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1451), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1434), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1445), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1376), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 2), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), SHIFT_REPEAT(1372), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 3), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 3), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 4), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 4), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), SHIFT_REPEAT(1376), - [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_encapsed_string_repeat1, 2), SHIFT_REPEAT(283), - [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_encapsed_string_repeat1, 2), SHIFT_REPEAT(1480), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_encapsed_string_repeat1, 2), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_encapsed_string_repeat1, 2), SHIFT_REPEAT(1475), - [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_encapsed_string_repeat1, 2), SHIFT_REPEAT(1475), - [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_encapsed_string_repeat1, 2), SHIFT_REPEAT(1587), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1433), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1449), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1451), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1434), - [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1445), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 19), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 94), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 125), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 95), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 96), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 65), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 124), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 7), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 66), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 32), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 1), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 56), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 139), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 144), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 66), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_member_declaration, 1), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 126), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 64), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 93), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 140), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 8), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 126), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 66), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 139), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2499), - [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2262), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_encapsed_string_repeat1, 2), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 18), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 18), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(402), - [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2157), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_encapsed_string_repeat1, 1, .production_id = 4), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_encapsed_string_repeat1, 1, .production_id = 4), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_encapsed_string_repeat1, 1), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_encapsed_string_repeat1, 1), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 5), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 5), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1301), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), - [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 37), SHIFT(2162), - [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 37), SHIFT(83), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 13), SHIFT(2162), - [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 13), SHIFT(83), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 1), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), - [3108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1720), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2355), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2355), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 10), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2405), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1382), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2355), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 71), - [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 71), SHIFT_REPEAT(2137), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 71), - [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 71), SHIFT_REPEAT(2162), - [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1299), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1300), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1650), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 27), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), - [3265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1945), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1946), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), - [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1373), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), - [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1526), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1468), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1387), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1793), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(142), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 90), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 40), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(140), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 13), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 13), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(151), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), - [3509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(272), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 103), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(835), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1622), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1631), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 103), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(146), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 58), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 57), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 55), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(144), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(807), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 53), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 3), - [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1370), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 40), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(150), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 40), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 39), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 35), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 35), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 29), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 22), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 26), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 23), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 24), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 60), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 25), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 102), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2247), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 86), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 88), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 89), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 8), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2405), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 14), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 122), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 52), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 54), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 56), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2247), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_array_access_argument, 1), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4337] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), -}; - -#ifdef __cplusplus -extern "C" { -#endif -void *tree_sitter_php2_external_scanner_create(void); -void tree_sitter_php2_external_scanner_destroy(void *); -bool tree_sitter_php2_external_scanner_scan(void *, TSLexer *, const bool *); -unsigned tree_sitter_php2_external_scanner_serialize(void *, char *); -void tree_sitter_php2_external_scanner_deserialize(void *, const char *, unsigned); - -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_php2(void) { - static const TSLanguage language = { - .version = LANGUAGE_VERSION, - .symbol_count = SYMBOL_COUNT, - .alias_count = ALIAS_COUNT, - .token_count = TOKEN_COUNT, - .external_token_count = EXTERNAL_TOKEN_COUNT, - .state_count = STATE_COUNT, - .large_state_count = LARGE_STATE_COUNT, - .production_id_count = PRODUCTION_ID_COUNT, - .field_count = FIELD_COUNT, - .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .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 = 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 = &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 = { - &ts_external_scanner_states[0][0], - ts_external_scanner_symbol_map, - tree_sitter_php2_external_scanner_create, - tree_sitter_php2_external_scanner_destroy, - tree_sitter_php2_external_scanner_scan, - tree_sitter_php2_external_scanner_serialize, - tree_sitter_php2_external_scanner_deserialize, - }, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/internal/parser/sitter/php2/scanner.cc b/internal/parser/sitter/php2/scanner.cc deleted file mode 100644 index 75257bdb6..000000000 --- a/internal/parser/sitter/php2/scanner.cc +++ /dev/null @@ -1,381 +0,0 @@ -#include -#include -#include -#include - -namespace { - -using std::vector; -using std::string; - -enum TokenType { - AUTOMATIC_SEMICOLON, - HEREDOC, - ENCAPSED_STRING_CHARS, - ENCAPSED_STRING_CHARS_AFTER_VARIABLE, - EOF_TOKEN, - SENTINEL_ERROR, // Unused token used to indicate error recovery mode -}; - -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); - } - - static void advance(TSLexer *lexer) { - lexer->advance(lexer, 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; - } - } - } - - static bool is_valid_name_char(TSLexer *lexer) { - return iswalpha(lexer->lookahead) || lexer->lookahead == '_'; - } - - static bool is_escapable_sequence(TSLexer *lexer) { - // Note: remember to also update the escape_sequence rule in the - // main grammar whenever changing this method - auto 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 isxdigit(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 interprented as characters and {$a} as a variable - } - - // Octal - return iswdigit(lexer->lookahead) && lexer->lookahead >= '0' && lexer->lookahead <= '7'; - } - - bool scan_encapsed_part_string(TSLexer *lexer, bool is_after_variable) { - lexer->result_symbol = ENCAPSED_STRING_CHARS; - - for (bool has_content = false;; has_content = true) { - lexer->mark_end(lexer); - - switch (lexer->lookahead) { - case '"': - return has_content; - case '\0': - return false; - case '\\': - advance(lexer); - - // \{ should not be interprented as an escape sequence, but both - // should be consumed as normal characters - if (lexer->lookahead == '{') { - advance(lexer); - break; - } - - if (is_escapable_sequence(lexer)) { - return has_content; - } - break; - case '$': - advance(lexer); - - if (is_valid_name_char(lexer) || 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: - advance(lexer); - } - - is_after_variable = false; - } - } - - 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()) { - // 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 - while (lexer->lookahead == ' ') { - advance(lexer); - } - - // , and ) is needed to support heredoc in function arguments - if (lexer->lookahead == ';' || lexer->lookahead == ',' || lexer->lookahead == ')' || lexer->lookahead == '\n' || lexer->lookahead == '\r') { - 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) { - const bool is_error_recovery = valid_symbols[SENTINEL_ERROR]; - - if (is_error_recovery) { - return false; - } - - has_leading_whitespace = false; - - lexer->mark_end(lexer); - - if (valid_symbols[ENCAPSED_STRING_CHARS_AFTER_VARIABLE]) { - return scan_encapsed_part_string(lexer, true); - } - - if (valid_symbols[ENCAPSED_STRING_CHARS]) { - return scan_encapsed_part_string(lexer, false); - } - - 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_php2_external_scanner_create() { - return new Scanner(); -} - -unsigned tree_sitter_php2_external_scanner_serialize(void *payload, char *buffer) { - Scanner *scanner = static_cast(payload); - return scanner->serialize(buffer); -} - -void tree_sitter_php2_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { - Scanner *scanner = static_cast(payload); - scanner->deserialize(buffer, length); -} - -void tree_sitter_php2_external_scanner_destroy(void *payload) { - Scanner *scanner = static_cast(payload); - delete scanner; -} - -bool tree_sitter_php2_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_php2_external_scanner_reset(void *p) {} - -} diff --git a/internal/parser/sitter/php2/tree_sitter/parser.h b/internal/parser/sitter/php2/tree_sitter/parser.h deleted file mode 100644 index cbbc7b4ee..000000000 --- a/internal/parser/sitter/php2/tree_sitter/parser.h +++ /dev/null @@ -1,223 +0,0 @@ -#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 - -typedef uint16_t TSStateId; - -#ifndef TREE_SITTER_API_H_ -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; - -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; -}; - -/* - * Lexer Macros - */ - -#define START_LEXER() \ - bool result = false; \ - bool skip = false; \ - 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 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_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }} - -#define RECOVER() \ - {{ \ - .type = TSParseActionTypeRecover \ - }} - -#define ACCEPT_INPUT() \ - {{ \ - .type = TSParseActionTypeAccept \ - }} - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PARSER_H_